89ea65a0c8
New usernames now show a "party is over" page instead of proceeding to account creation. Existing users can still log in. Extended BOOKING_END to 2026-06-17 23:59 to allow edits through Wednesday night. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
414 B
HTML
16 lines
414 B
HTML
{% extends "suff/base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>Party vorbei!</h2>
|
|
<p>
|
|
Der Name <b>{{ username }}</b> existiert noch nicht —
|
|
neue Accounts können nicht mehr angelegt werden, weil das Festival vorbei ist.
|
|
</p>
|
|
<p>
|
|
Du hast schon einen Account? Gib deinen Namen nochmal ein.
|
|
</p>
|
|
<div class="link-row">
|
|
<a href="{% url 'suff:name' %}" class="link-btn">Zurück</a>
|
|
</div>
|
|
{% endblock %}
|