40 lines
1.8 KiB
HTML
40 lines
1.8 KiB
HTML
{% load static %}
|
|
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Anmeldung</title>
|
|
<link rel="stylesheet" href="{% static 'workflows/css/buttons.css' %}" />
|
|
<style>
|
|
body { margin: 0; font-family: Arial, sans-serif; min-height: 100vh; display: grid; place-items: center; background: linear-gradient(160deg, #eef6ff, #fff3f3); }
|
|
.card { width: min(420px, calc(100% - 28px)); background: #fff; border: 1px solid #d9e3f0; border-radius: 14px; padding: 20px; box-shadow: 0 12px 30px rgba(28, 45, 79, 0.12); }
|
|
.logo { width: 190px; max-width: 100%; height: auto; display: block; margin-bottom: 12px; }
|
|
h1 { margin: 0 0 8px; font-size: 24px; }
|
|
p { margin: 0 0 14px; color: #607086; }
|
|
.field { margin-bottom: 12px; }
|
|
label { display: block; font-weight: 600; margin-bottom: 6px; }
|
|
input { width: 100%; padding: 10px; box-sizing: border-box; border: 1px solid #cbd5e1; border-radius: 8px; }
|
|
.btn { width: 100%; }
|
|
.errorlist { color: #b91c1c; margin: 6px 0; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<img class="logo" src="https://tub.co/media/site/0856bfc615-1750234287/tubco-wortbildmarke.svg" alt="TUB/CO Logo" />
|
|
<h1>Anmeldung</h1>
|
|
<p>Bitte melden Sie sich mit Ihrem Benutzerkonto an.</p>
|
|
|
|
<form method="post" action="/accounts/login/">
|
|
{% csrf_token %}
|
|
{% if form.errors %}
|
|
<div class="errorlist">Anmeldung fehlgeschlagen. Bitte Zugangsdaten prüfen.</div>
|
|
{% endif %}
|
|
<div class="field">{{ form.username.label_tag }}{{ form.username }}</div>
|
|
<div class="field">{{ form.password.label_tag }}{{ form.password }}</div>
|
|
<button class="btn btn-primary" type="submit">Anmelden</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|