McDoPlus/templates/user/signup.html.twig
2023-11-21 14:49:29 +01:00

20 lines
354 B
Twig

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