27 lines
1.4 KiB
Twig
27 lines
1.4 KiB
Twig
{% extends 'main/base.html.twig' %}
|
|
{% block head %}
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Sortie</title>
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('app') }}
|
|
{% endblock %}
|
|
</head>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="flex flex-row justify-center items-stretch py-48">
|
|
<div class="bg-gray-500 shadow-lg p-8 max-w-sm text-center flex-1">
|
|
<h4 class="text-white text-lg font-semibold py-6">Sortir !</h4>
|
|
<p class="text-[13px] text-gray-300 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.email) }}
|
|
{{ form_row(registrationForm.plainPassword) }}
|
|
<button class="bg-blue-500 hover:bg-blue-400 text-white font-bold py-2 px-4 border-b-4 border-blue-700 hover:border-blue-500 rounded mx-auto" type="submit">S'inscrire</button>
|
|
{{ form_end(registrationForm) }}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |