futtern/templates/username.html.twig
2025-06-18 20:12:17 +02:00

11 lines
No EOL
337 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Tell me your name{% endblock %}
{% block body %}
<h1 class="mb-4">Tell me your name</h1>
<p class="mb-3">By submitting the form, you agree that your username will be stored as a cookie.</p>
<div class="mb-4">
{{ include('_form.html.twig') }}
</div>
{% endblock %}