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
Showing
13 changed files
with
343 additions
and
45 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
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,123 @@ | ||
<!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); | ||
} | ||
.containerr { | ||
max-width: 600px; | ||
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; | ||
max-height: 380px; | ||
} | ||
.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> | ||
<nav class="navbar navbar-light navbar-expand-md navbar-fixed-top navigation-clean-button"> | ||
<div class="container"> | ||
<button class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#mynav"><span | ||
class="visually-hidden">.</span><span class="navbar-toggler-icon"></span></button> | ||
<div> | ||
<a href="index.html" class="navbar-brand | ||
"><span><strong>The Cafe</strong></span></a> | ||
</div> | ||
<div class="collapse navbar-collapse" id="mynav"> | ||
<ul class="navbar-nav navbar-right"> | ||
<li class="nav-item"> | ||
<a href="index.html" class="nav-link active" style="color:rgb(255, 255, 255);">Home</a> | ||
</li> | ||
<li class="nav-item dropdown"> | ||
<a class="dropdown-toggle nav-link" data-bs-toggle="dropdown" href="#" | ||
style="color:rgba(255, 255, 255);">Services</a> | ||
<div class="dropdown-menu"> | ||
<a href="menu.html" class="dropdown-item bg-dark" data-bss-hover-animate="pulse" | ||
style="color:rgba(255, 255, 255);">Menu</a> | ||
<a href="order.html" class="dropdown-item bg-dark d-fle" data-bss-hover-animate="pulse" | ||
style="color:rgba(255, 255, 255);">Your Order</a> | ||
</div> | ||
</li> | ||
<li class="nav-item"> | ||
<a href="about.html" class="nav-link active" style="color:rgba(255, 255, 255);">About Us</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a href="contact.html" class="nav-link active" style="color:rgba(255, 255, 255);">Contact Us</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a href="faq.html" class="nav-link active" style="color:rgba(255, 255, 255);">FAQ</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a href="signup.html" class="nav-link active" style="color:rgba(255, 255, 255);">Sign Up</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a href="login.html" class="nav-link active" style="color:rgba(255, 255, 255);">Login</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<!-- Your login form starts here --> | ||
<div class="containerr"> | ||
<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> | ||
<p>Don't have an account? <a href="signup.html">Sign Up here</a>.</p> | ||
</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
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
Oops, something went wrong.