ltbxd-actorle/templates/security/register.html.twig

20 lines
584 B
Twig
Raw Normal View History

{% extends 'base.html.twig' %}
2026-03-30 10:13:19 +00:00
{% block title %}Inscription — Actorle{% endblock %}
{% block body %}
<div class="auth-container">
2026-03-30 10:13:19 +00:00
<h1>Créer un compte</h1>
{{ form_start(registrationForm) }}
{{ form_row(registrationForm.email) }}
{{ form_row(registrationForm.plainPassword.first) }}
{{ form_row(registrationForm.plainPassword.second) }}
2026-03-30 10:13:19 +00:00
<button type="submit">S'inscrire</button>
{{ form_end(registrationForm) }}
2026-03-30 10:13:19 +00:00
<p class="auth-link">Déjà un compte ? <a href="{{ path('app_login') }}">Se connecter</a></p>
</div>
{% endblock %}