Files
e-ticket/templates/security/email_verified.html.twig
Serreau Jovann 6fab96ab44 Full mobile responsive (320px) and tablet (768px) support across all templates
- All text-[20rem] background text → text-[8rem] md:text-[20rem]
- All text-8xl → text-5xl md:text-8xl
- All text-5xl emojis → text-3xl md:text-5xl
- edit_event: w-full md:w-[80%], poster column w-full lg:w-[350px]
- account/index: tab bar overflow-x-auto, events table overflow-x-auto
- admin/events: table overflow-x-auto
- register: tab buttons overflow-x-auto
- error 404/500: responsive padding p-6 md:p-12
- base footer: flex-col sm:flex-row for bottom bar
- Add PWA bundle (spomky-labs/pwa-bundle) with composer require files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 19:11:02 +01:00

27 lines
1.1 KiB
Twig

{% extends 'base.html.twig' %}
{% block title %}Email verifie - E-Ticket{% endblock %}
{% block body %}
<div class="page-container-sm text-center">
<div class="card-brutal-lg">
<div class="text-3xl md:text-5xl mb-4">&#10003;</div>
<h1 class="text-2xl font-black uppercase tracking-tighter italic mb-4">Email verifie !</h1>
<div class="card-brutal-green mb-6">
<p class="font-bold text-sm">Votre adresse email a ete verifiee avec succes.</p>
</div>
{% if isOrganizer %}
<div class="card-brutal-yellow mb-6">
<p class="font-bold text-sm">L'equipe E-Ticket va maintenant examiner votre demande de compte organisateur. Vous recevrez une reponse sous 48h.</p>
</div>
{% else %}
<p class="font-bold text-gray-500 text-sm mb-6">Votre compte est actif. Vous pouvez maintenant vous connecter.</p>
{% endif %}
<a href="{{ path('app_login') }}" class="btn-brutal font-black uppercase text-sm tracking-widest hover:bg-indigo-600 hover:text-black transition-all">Se connecter</a>
</div>
</div>
{% endblock %}