Files
3d.lehrstun.de/templates/admin_login.html

23 lines
801 B
HTML
Raw Normal View History

2026-05-24 18:56:59 +02:00
{% extends "base.html" %}
{% block title %}Admin-Login — 3D-Druck-AG{% endblock %}
{% block content %}
<div class="card" style="max-width: 400px; margin: 3rem auto; text-align: center;">
<h1>Admin-Login</h1>
<p style="color: var(--text-light); margin-bottom: 1.5rem;">
Nur fuer Herb &amp; Herr Rechmann.
2026-05-24 18:56:59 +02:00
</p>
<form method="post">
<input
type="password"
name="passwort"
placeholder="Passwort"
autofocus
style="font-size: 1rem; padding: 0.6rem; width: 100%;
border: 1px solid var(--border); border-radius: 6px;
margin-bottom: 1rem;"
>
<button type="submit" class="btn btn-primary" style="width: 100%;">Login</button>
</form>
</div>
{% endblock %}