23 lines
794 B
HTML
23 lines
794 B
HTML
|
|
{% 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 & Markus.
|
||
|
|
</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 %}
|