2023-02-09 12:16:04 +01:00
|
|
|
{% extends "base" %}
|
|
|
|
{% block content %}
|
|
|
|
|
2023-03-04 11:39:10 +01:00
|
|
|
<div class="content-center-all full-height">
|
|
|
|
<form action="/name" method="post" class="p-3 bg-gray">
|
|
|
|
<input type="hidden" name="_method" value="put" />
|
2023-02-16 11:26:41 +01:00
|
|
|
|
2023-03-04 11:39:10 +01:00
|
|
|
<label for="name">Bitte deinen Namen eingeben</label>
|
|
|
|
<input type="text" class="w-full" id="name" name="name"/>
|
2023-02-16 11:26:41 +01:00
|
|
|
|
2023-03-04 11:39:10 +01:00
|
|
|
<label for="pw">(Optional) Passwort eingeben</label>
|
|
|
|
<input type="password" class="w-full" id="pw" name="pw"/>
|
2023-02-16 11:26:41 +01:00
|
|
|
|
2023-03-04 11:39:10 +01:00
|
|
|
<input type="submit" class="button button-primary mb-0 d-block w-full b" value="Weiter"/>
|
|
|
|
</form>
|
|
|
|
</div>
|
2023-02-09 12:16:04 +01:00
|
|
|
{% endblock content %}
|
|
|
|
|