23b24ed0b9
- Style "Spenden" link as a compact right-aligned button - Replace radio buttons with checkboxes for Gratis/Direkt-bezahlt (toggleable) - Remove "Sonstiges" from payment method dropdown - Disable submit buttons on form submit to prevent double-clicks and give loading feedback (fixes drink_id=None bug caused by disabled button value not being submitted) - Block weak PINs (sequential and repeated digits) - Limit usernames to 2–20 characters - Style PIN errors consistently with other error messages - Add self-service "PIN ändern" page, shown above Logout in 2-column layout - Highlight own username in orange badge (matching staff-target cyan style) - Update booking window: 2026-05-30 10:00 – 2026-06-14 22:00 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
540 B
HTML
20 lines
540 B
HTML
{% extends "suff/base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>PIN ändern</h2>
|
|
|
|
{% if error %}<p class="error">{{ error }}</p>{% endif %}
|
|
|
|
<form method="post" action="{% url 'suff:change_pin' %}">
|
|
{% csrf_token %}
|
|
<label>
|
|
Neue PIN:
|
|
<input type="text" name="pin" inputmode="numeric" pattern="[0-9]{3}" maxlength="3"
|
|
minlength="3" required autofocus autocomplete="off" />
|
|
</label>
|
|
<button type="submit">PIN speichern</button>
|
|
</form>
|
|
|
|
<p><a href="{% url 'suff:me' %}">Abbrechen</a></p>
|
|
{% endblock %}
|