mirror of
https://github.com/Noratrieb/oh-oh.git
synced 2026-01-14 17:15:02 +01:00
30 lines
755 B
HTML
30 lines
755 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Login - IDP</title>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
</head>
|
|
<body>
|
|
<h1>Log into your beautiful account</h1>
|
|
<a href="/">home</a>
|
|
<form method="post" action="/login">
|
|
<div>
|
|
<label for="username">Username</label>
|
|
<input id="username" name="username" />
|
|
</div>
|
|
|
|
<div>
|
|
<label for="password">Password</label>
|
|
<input id="password" name="password" />
|
|
</div>
|
|
|
|
<button type="submit">Login</button>
|
|
|
|
{% if error %}
|
|
<p>Invalid username or password.</p>
|
|
{% endif %}
|
|
</form>
|
|
</body>
|
|
</html>
|