- 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>
25 lines
1.1 KiB
Twig
25 lines
1.1 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Compte cree - 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">✓</div>
|
|
<h1 class="text-2xl font-black uppercase tracking-tighter italic mb-4">Compte cree avec succes !</h1>
|
|
|
|
<div class="card-brutal-green mb-6">
|
|
<p class="font-bold text-sm">Un email de verification vous a ete envoye. Veuillez cliquer sur le lien dans l'email pour activer votre compte.</p>
|
|
</div>
|
|
|
|
{% if isOrganizer %}
|
|
<div class="card-brutal-yellow mb-6">
|
|
<p class="font-bold text-sm">Une fois votre email verifie, l'equipe E-Ticket examinera votre demande de compte organisateur et vous donnera une reponse sous 48h.</p>
|
|
</div>
|
|
{% 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">Aller a la connexion</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|