31 lines
1.5 KiB
Twig
31 lines
1.5 KiB
Twig
{% extends 'main/base.html.twig' %}
|
|
{% block head %}
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
{% block title %}📣 Sortie.com Inscription 🔊{% endblock %}
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('app') }}
|
|
{% endblock %}
|
|
</head>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="flex flex-row justify-center items-stretch py-24">
|
|
<div class="bgRegister shadow-lg p-8 max-w-sm text-center flex-1">
|
|
<h2 class="bgRegisterText text-2xl font-semibold py-6">Sortir !</h2>
|
|
<p class="text-lg bgRegisterText mt-3 leading-relaxed">Bienvenue sur notre application web référencant tout type d'évènements à travers le monde. N'hésitez pas à vous inscrire sur notre plateforme et y invitez vos amis afins de participer à des évènements simplement et qui vous conviennent !</p>
|
|
</div>
|
|
<div class="bg-white shadow-lg p-8 max-w-sm text-center flex-1">
|
|
<h2 class="text-2xl font-bold text-center pb-6">S'inscrire</h2>
|
|
{{ form_start(registrationForm) }}
|
|
{{ form_row(registrationForm.prenom) }}
|
|
{{ form_row(registrationForm.nom) }}
|
|
{{ form_row(registrationForm.telephone) }}
|
|
{{ form_row(registrationForm.email) }}
|
|
{{ form_row(registrationForm.pseudo) }}
|
|
{{ form_row(registrationForm.plainPassword) }}
|
|
<button class="btnSecondary" type="submit">S'inscrire</button>
|
|
{{ form_end(registrationForm) }}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |