Files
pingu-concerts/app/templates/login.html
T

42 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anmelden · Pingu Concerts</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<header>
<div class="header-inner">
<a href="/" class="logo">🎸 Pingu <span>Concerts</span></a>
</div>
</header>
<main>
<div class="page-title">
<h1>Anmelden</h1>
<p>Melde dich an, um Konzerte hinzuzufügen oder zu bearbeiten.</p>
</div>
<section class="empty">
<form method="post" action="/login">
<input type="hidden" name="next" value="{{ next_path }}">
{% if error %}<p role="alert">{{ error }}</p>{% endif %}
<p>
<label>Benutzername oder E-Mail<br>
<input type="text" name="username" required autocomplete="username">
</label>
</p>
<p>
<label>Passwort<br>
<input type="password" name="password" required autocomplete="current-password">
</label>
</p>
<button type="submit" class="button">Anmelden</button>
<p><small>Passwort vergessen? Bitte einen Admin um einen zeitlich begrenzten Reset-Link.</small></p>
<a href="/" class="button button-secondary">Abbrechen</a>
</form>
</section>
</main>
</body>
</html>