11 lines
207 B
Plaintext
11 lines
207 B
Plaintext
|
{% extends "base" %}
|
||
|
{% block content %}
|
||
|
|
||
|
What's your name?
|
||
|
<form action="/setname" method="post">
|
||
|
<input type="text" name="name"/>
|
||
|
<input type="submit" value="Speichern"/>
|
||
|
</form>
|
||
|
{% endblock content %}
|
||
|
|