<html> | |
<head> | |
<title>Login</title> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<h1>Login</h1> | |
{% if error_message %} | |
<p style="color: red;">{{ error_message }}</p> | |
{% endif %} | |
<form method="post" action="/login"> | |
<label for="email">Email:</label> | |
<input type="text" id="email" name="email" required><br><br> | |
<label for="password">Password:</label> | |
<input type="password" id="password" name="password" required><br><br> | |
<button type="submit">Login</button> | |
</form> | |
</body> | |
</html> | |