22 lines
608 B
HTML
22 lines
608 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Numerus</title>
|
|
</head>
|
|
<body>
|
|
<h1>Numerus</h1>
|
|
<h2>Login</h2>
|
|
<form method="POST" action="/login">
|
|
<label for="user_email">Email</label>
|
|
<input id="user_email" type="email" required autofocus name="email" autocapitalize="none">
|
|
|
|
<label for="user_password">Password</label>
|
|
<input id="user_password" type="password" required name="password" autocomplete="current-password">
|
|
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</body>
|
|
</html>
|