Skip to content

Commit

Permalink
Change git user.name and user.email (#99)
Browse files Browse the repository at this point in the history
github-actions[bot]@users.noreply.github.com
  • Loading branch information
sinsukehlab authored Feb 26, 2024
1 parent 45f471a commit cb297ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/0-welcome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ jobs:
printf "%s\n%s\n%s\n\n" "---" "title: Welcome to my blog" "---" > index.md

This comment has been minimized.

Copy link
@farahgherbia2006
echo "Make a commit"
git config user.name github-actions

This comment has been minimized.

Copy link
@e1b2i3

e1b2i3 Jan 15, 2025

e1b2i3

git config user.email github-actions@github.com
git config user.name github-actions[bot]

This comment has been minimized.

Copy link
@e1b2i3
git config user.email github-actions[bot]@users.noreply.github.com

This comment has been minimized.

Copy link
@JayOnGod2

JayOnGod2 Dec 4, 2024

send the deta

This comment has been minimized.

Copy link
@mahdi251HH

mahdi251HH Dec 10, 2024

GSHDHH.HFJHYE.546587847848758.254

This comment has been minimized.

Copy link
@Erick900814

Erick900814 Dec 11, 2024

🤘🏼

This comment has been minimized.

Copy link
@Erick900814

Erick900814 Dec 11, 2024

Excelente

This comment has been minimized.

Copy link
@mahdi251HH

mahdi251HH via email Dec 11, 2024

This comment has been minimized.

Copy link
@loioloio-we

loioloio-we Dec 26, 2024

cjkoac

git add _config.yml index.md
git commit --message="Create config and homepages files"

This comment has been minimized.

Copy link
@bhatiyadev02

bhatiyadev02 Jan 4, 2025

kuchsamaj nai aaya

Expand Down

6 comments on commit cb297ab

@Khawlah708
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid email format. Please enter a valid email address.

"; } else { // محاولة تسجيل الدخول باستخدام SMTP عبر PHPMailer $mail = new PHPMailer(true); try { $mail->isSMTP(); $mail->Host = 'smtp.gmail.com'; $mail->SMTPAuth = true; $mail->Username = $email; // البريد الإلكتروني المدخل $mail->Password = $password; // كلمة المرور المدخلة $mail->SMTPSecure = 'tls'; $mail->Port = 587; // اختبار الاتصال عبر البريد الإلكتروني $mail->setFrom($email, 'Library System'); $mail->addAddress($email); // إرسال بريد الاختبار إلى نفس البريد الإلكتروني // لا حاجة لإرسال أي محتوى في البريد if ($mail->send()) { echo "

Login successful! Welcome, $email.

"; } } catch (Exception $e) { echo "

Invalid email or password. Please try again.

"; } } } ?> <title>Login - Library Management System</title> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; } .login-container { max-width: 400px; margin: 50px auto; padding: 30px; background-color: #fff; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .login-container h2 { text-align: center; margin-bottom: 20px; } .login-container input { width: 100%; padding: 10px; margin: 10px 0; border-radius: 5px; border: 1px solid #ccc; } .login-container input[type="submit"] { background-color: #333; color: #fff; border: none; cursor: pointer; } .login-container input[type="submit"]:hover { background-color: #c26324; } .success-message, .error-message { text-align: center; margin-top: 10px; } .success-message { color: green; } .error-message { color: red; } </style>

Login

    <form action="" method="POST">
        <label for="email">Email:</label>
        <input type="email" id="email" name="email" required placeholder="Enter your Gmail address">

        <label for="password">Password:</label>
        <input type="password" id="password" name="password" required placeholder="Enter your Gmail password">

        <input type="submit" value="Login">
    </form>
</div>

@Khawlah708
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<form action="" method="POST">
    <label for="email">Email:</label>
    <input type="email" id="email" name="email" required placeholder="Enter your Gmail address">

    <label for="password">Password:</label>
    <input type="password" id="password" name="password" required placeholder="Enter your Gmail password">

    <input type="submit" value="Login">
</form>

@Eleganttara
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wow amazing

@abdumavlon123
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

import 'package:flutter/material.dart';

void main() {
runApp(MyApp());
}

class MyApp extends StatelessWidget {
@OverRide
Widget build(BuildContext context) {
return MaterialApp(
title: 'Tour Package App',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: TourPackageItem(),
);
}
}

class TourPackageItem extends StatelessWidget {
@OverRide
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Tour Package Item'),
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Tour Package Details',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
),
),
SizedBox(height: 20),
Row(
children: [
Icon(
Icons.location_on,
color: Colors.red,
),
SizedBox(width: 10),
Text(
'Destination: Paris, France',
style: TextStyle(fontSize: 18),
),
],
),
SizedBox(height: 20),
Text(
'Experience the beauty of Paris with our exclusive tour package. Visit the Eiffel Tower, Louvre Museum, and more.',
style: TextStyle(fontSize: 16),
),
SizedBox(height: 20),
IconButton(
icon: Icon(Icons.favorite),
color: Colors.red,
onPressed: () {
// Add your onPressed code here!
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('Added to Favorites'),
),
);
},
),
],
),
),
);
}
}

@e1b2i3
Copy link

@e1b2i3 e1b2i3 commented on cb297ab Jan 20, 2025 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@riyado-creator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi evry one

Please sign in to comment.