48 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - Busylight</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css" rel="stylesheet">
</head>
<body class="bg-light">
<div class="container">
<div class="row justify-content-center mt-5">
<div class="col-md-4">
<div class="card shadow-sm">
<div class="card-body p-4">
<div class="text-center mb-4">
<img src="/static/logo-dark.svg" alt="cynfo" style="height: 40px;" class="mb-2">
<h5>Busylight</h5>
</div>
{% if error %}
<div class="alert alert-danger py-2">
<small><i class="bi bi-x-circle"></i> Falsches Passwort</small>
</div>
{% endif %}
<form method="post" action="/login">
<input type="hidden" name="next" value="{{ next }}">
<div class="mb-3">
<label class="form-label">Passwort</label>
<input type="password" name="password" class="form-control" autofocus required>
</div>
<button type="submit" class="btn btn-primary w-100">
<i class="bi bi-box-arrow-in-right"></i> Anmelden
</button>
</form>
<div class="text-center mt-3">
<a href="/" class="text-muted small">Zurueck zum Dashboard</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>