2023-02-09 12:16:04 +01:00
|
|
|
{% extends "base" %}
|
|
|
|
{% block content %}
|
|
|
|
|
2023-02-09 15:29:44 +01:00
|
|
|
<form action="/name" method="post">
|
|
|
|
<input type="hidden" name="_method" value="put" />
|
2023-02-16 11:26:41 +01:00
|
|
|
|
2023-02-09 17:08:07 +01:00
|
|
|
<label for="name">Bitte deinen Namen eingeben</label>
|
|
|
|
<input type="text" id="name" name="name"/>
|
2023-02-16 11:26:41 +01:00
|
|
|
|
|
|
|
<label for="pw">(Optional) Passwort eingeben</label>
|
|
|
|
<input type="password" id="pw" name="pw"/>
|
|
|
|
|
2023-02-09 17:08:07 +01:00
|
|
|
<input type="submit" value="Weiter"/>
|
2023-02-09 12:16:04 +01:00
|
|
|
</form>
|
|
|
|
{% endblock content %}
|
|
|
|
|