rowt/templates/name.html.tera

12 lines
256 B
Plaintext
Raw Normal View History

2023-02-09 12:16:04 +01:00
{% extends "base" %}
{% block content %}
What's your name?
2023-02-09 15:29:44 +01:00
<form action="/name" method="post">
<input type="hidden" name="_method" value="put" />
2023-02-09 12:16:04 +01:00
<input type="text" name="name"/>
<input type="submit" value="Speichern"/>
</form>
{% endblock content %}