futtern/templates/username.html.twig

9 lines
273 B
Twig
Raw Permalink Normal View History

2024-06-27 21:33:32 +00:00
{% extends 'base.html.twig' %}
{% block title %}Tell me your name{% endblock %}
{% block body %}
<h1>Tell me your name</h1>
<p>By submitting the form, you agree that your username will be stored as a cookie.</p>
{{ include('_form.html.twig') }}
{% endblock %}