forked from lubiana/futtern
11 lines
No EOL
337 B
Twig
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 %} |