forked from Open-Source-Chandigarh/Cafe-Management
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e8a348
commit 9d31715
Showing
8 changed files
with
199 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Login</title> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="about.css"> | ||
<link rel="stylesheet" href="mynav.css"> | ||
<script src="jquery-3.6.4.min.js"></script> | ||
<script src="mynav.js"></script> | ||
<style> | ||
/* Add your custom styles here */ | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: rgb(111, 85, 85); | ||
} | ||
.container { | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 40px; | ||
background-color: white; | ||
border-radius: 8px; | ||
box-shadow: 0 4px 8px rgba(0,0,0,0.1); | ||
margin-top: 100px; | ||
} | ||
.sign{ | ||
text-align: center; /* Center align content */ | ||
} | ||
.form-group { | ||
margin-bottom: 20px; | ||
} | ||
label { | ||
font-weight: bold; | ||
display: block; | ||
margin-bottom: 5px; | ||
} | ||
input[type="text"], | ||
input[type="email"], | ||
input[type="password"] { | ||
width: 100%; | ||
padding: 8px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
} | ||
button[type="submit"] { | ||
padding: 10px 20px; | ||
background-color: #007bff; | ||
border: none; | ||
color: #fff; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
} | ||
button[type="submit"]:hover { | ||
background-color: #0056b3; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<!-- Your login form starts here --> | ||
<div class="container"> | ||
<h2 class="sign">Login</h2> | ||
<form action="login_form.php" method="post"> | ||
<div class="form-group"> | ||
<label for="username">Username</label> | ||
<input type="text" id="username" name="username" required> | ||
</div> | ||
<div class="form-group"> | ||
<label for="password">Password</label> | ||
<input type="password" id="password" name="password" required> | ||
</div> | ||
<div class="form-group" > | ||
<button type="submit">Login</button> | ||
</div> | ||
</form> | ||
</div> | ||
<!-- Your login form ends here --> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Sign Up</title> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="about.css"> | ||
<link rel="stylesheet" href="mynav.css"> | ||
<script src="jquery-3.6.4.min.js"></script> | ||
<script src="mynav.js"></script> | ||
<style> | ||
/* Add your custom styles here */ | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: rgb(111, 85, 85); | ||
} | ||
.container { | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 40px; | ||
background-color: white; | ||
border-radius: 8px; | ||
box-shadow: 0 4px 8px rgba(0,0,0,0.1); | ||
margin-top: 100px; | ||
|
||
} | ||
.sign{ | ||
text-align: center; /* Center align content */ | ||
} | ||
.form-group { | ||
margin-bottom: 20px; | ||
} | ||
label { | ||
font-weight: bold; | ||
display: block; | ||
margin-bottom: 5px; | ||
} | ||
input[type="text"], | ||
input[type="email"], | ||
input[type="password"] { | ||
width: 100%; | ||
padding: 8px; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
} | ||
button[type="submit"] { | ||
padding: 10px 20px; | ||
background-color: #007bff; | ||
border: none; | ||
color: #fff; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
} | ||
button[type="submit"]:hover { | ||
background-color: #0056b3; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<!-- Your signup form starts here --> | ||
<div class="container"> | ||
<h2 class="sign">Sign Up</h2> | ||
<form action="submit_form.php" method="post"> | ||
<div class="form-group"> | ||
<label for="username">Username</label> | ||
<input type="text" id="username" name="username" required> | ||
</div> | ||
<div class="form-group"> | ||
<label for="email">Email</label> | ||
<input type="email" id="email" name="email" required> | ||
</div> | ||
<div class="form-group"> | ||
<label for="password">Password</label> | ||
<input type="password" id="password" name="password" required> | ||
</div> | ||
<div class="form-group" > | ||
<button type="submit">Sign Up</button> | ||
</div> | ||
</form> | ||
</div> | ||
<!-- Your signup form ends here --> | ||
</body> | ||
</html> |