Files
ltbxd-actorle/templates/security/register.html.twig
thibaud-leclere 3c15c12255 update theme
2026-03-30 12:13:19 +02:00

20 lines
584 B
Twig

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