Files
flask_test/login.html
2023-04-26 18:57:12 +02:00

26 lines
524 B
HTML

<!doctype html>
<html>
<head>
<title>Login</title>
</head>
<body>
<h1>Login</h1>
{% if error %}
<p>{{ error }}</p>
{% endif %}
<form method="post">
<p>
<label for="username">Username:</label>
<input type="text" name="username" required>
</p>
<p>
<label for="password">Password:</label>
<input type="password" name="password" required>
</p>
<p>
<button type="submit">Login</button>
</p>
</form>
</body>
</html>