mirror of
https://github.com/elisspace/own_vs_buy.git
synced 2026-08-29 15:44:04 +00:00
19 lines
427 B
HTML
19 lines
427 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<h2>Login</h2>
|
|
{% if error %}
|
|
<p style="color: red;">{{ error }}</p>
|
|
{% endif %}
|
|
<form method="POST">
|
|
<label>Username: <input type="text" name="username"></label><br><br>
|
|
<label>Password: <input type="password" name="password"></label><br><br>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|