McDoPlus/templates/user/signup.html.twig
2023-12-05 14:23:45 +01:00

20 lines
381 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Utilisateur{% 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 %}