Files
ltbxd-actorle/templates/security/register.html.twig
thibaud-leclere dba9b985ee feat: rename site title to LtbxdActorle with dual-color branding
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-31 21:38:26 +02:00

20 lines
589 B
Twig

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