nagasurendra's picture
Create templates/login.html
626d2c5 verified
raw
history blame contribute delete
815 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" href="../static/css/styles.css">
</head>
<body>
<div class="container">
<h1>Login to Biryani Hub</h1>
<form id="login-form">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter your password" required>
<button type="submit">Login</button>
</form>
<p>Don't have an account? <a href="signup.html">Create one</a></p>
</div>
</body>
</html>