24 lines
714 B
HTML
24 lines
714 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Login</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='login_styles.css') }}">
|
|
</head>
|
|
<body>
|
|
<form method="POST">
|
|
<h1>Login</h1>
|
|
{% if error %}
|
|
<p class="error"><strong>Error:</strong> {{ error }}</p>
|
|
{% endif %}
|
|
<div>
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" id="username" required>
|
|
</div>
|
|
<div>
|
|
<label for="password">Password:</label>
|
|
<input type="password" name="password" id="password" required>
|
|
</div>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</body>
|
|
</html> |