python_test / templates /login.html
DSatishchandra's picture
Create templates/login.html
dfb07fe verified
Raw
History Blame
547 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
</head>
<body>
<h1>Biryani Hub - Login</h1>
<form method="POST">
<label>Email:</label>
<input type="email" name="email" required><br>
<label>Password:</label>
<input type="password" name="password" required><br>
<button type="submit">Login</button>
<p><a href="/signup">Don't have an account? Signup here.</a></p>
{% if error %}
<p style="color: red;">{{ error }}</p>
{% endif %}
</form>
</body>
</html>