update theme

This commit is contained in:
thibaud-leclere
2026-03-30 12:13:19 +02:00
parent 99abd78495
commit 3c15c12255
12 changed files with 966 additions and 120 deletions

View File

@@ -1,19 +1,19 @@
{% extends 'base.html.twig' %}
{% block title %}Register{% endblock %}
{% block title %}Inscription — Actorle{% endblock %}
{% block body %}
<div class="auth-container">
<h1>Register</h1>
<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">Create account</button>
<button type="submit">S'inscrire</button>
{{ form_end(registrationForm) }}
<p class="auth-link">Already have an account? <a href="{{ path('app_login') }}">Log in</a></p>
<p class="auth-link">Déjà un compte ? <a href="{{ path('app_login') }}">Se connecter</a></p>
</div>
{% endblock %}