forked from Ruderverein-Donau-Linz/rowt
12 lines
256 B
Plaintext
12 lines
256 B
Plaintext
{% extends "base" %}
|
|
{% block content %}
|
|
|
|
What's your name?
|
|
<form action="/name" method="post">
|
|
<input type="hidden" name="_method" value="put" />
|
|
<input type="text" name="name"/>
|
|
<input type="submit" value="Speichern"/>
|
|
</form>
|
|
{% endblock content %}
|
|
|