-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
github-actions[bot]@users.noreply.github.com
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.
Sorry, something went wrong. |
||
echo "Make a commit" | ||
git config user.name github-actions | ||
This comment has been minimized.
Sorry, something went wrong. |
||
git config user.email github-actions@github.com | ||
git config user.name github-actions[bot] | ||
This comment has been minimized.
Sorry, something went wrong. |
||
git config user.email github-actions[bot]@users.noreply.github.com | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
mahdi251HH
via email
|
||
git add _config.yml index.md | ||
git commit --message="Create config and homepages files" | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
6 comments
on commit cb297ab
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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>
There was a problem hiding this comment.
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>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wow amazing
There was a problem hiding this comment.
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'),
),
);
},
),
],
),
),
);
}
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hi evry one
omg