hacky-ruadat/templates/name.html.tera
2023-02-09 15:29:44 +01:00

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 %}