McDoPlus/templates/user/signup.html.twig
2023-11-21 22:02:38 +01:00

20 lines
369 B
Twig

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