Files
wdm/build/templates/maschinenverwaltung_login.html
T
bryan.hoffmann 36180448e1
Build und Push Docker Image / build-and-push (push) Failing after 49s
Initial commit
2026-08-20 12:24:38 +02:00

19 lines
680 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="back-row top">
<a class="big-btn small neutral" href="{{ url_for('leitstand_home') }}">&#8592; Zur&uuml;ck</a>
</div>
<form method="post" action="{{ url_for('maschinenverwaltung_login') }}" class="compact-form">
<input type="hidden" name="next" value="{{ next }}">
<div class="card compact">
<div class="form-group">
<label for="passwort">Passwort</label>
<input type="password" id="passwort" name="passwort" autofocus required>
</div>
</div>
<div class="action-row compact">
<button type="submit" class="big-btn small primary">&#128274; Anmelden</button>
</div>
</form>
{% endblock %}