McDoPlus/templates/user/signup.html.twig
clemcle81500 6eb297c0f1 corrections fautes
corrections fautes
2023-12-05 13:40:54 +01:00

20 lines
374 B
Twig

{% extends 'base.html.twig' %}
{% block title %}User{% endblock %}
{% block body %}
<div class="center">
<h1>Inscris toi !</h1>
<article>
{{ form_start(form) }}
{{ form_widget(form) }}
<button class="btn">
{{ button_label|default('Save') }}
</button>
{{ form_end(form) }}
</article>
</div>
{% endblock %}