23 lines
936 B
Twig
23 lines
936 B
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 justify-center items-center py-52">
|
|
<div class="bg-white shadow-lg rounded-lg p-8 max-w-md text-center">
|
|
<img src="{{ asset('img/logo.svg') }}" alt="Logo" class="h-28 mx-auto mb-4">
|
|
<h3 class="text-2xl font-bold text-center pb-3">Créer une nouvelle sortie</h3>
|
|
<p class="text-gray-700 text-justify mb-4">Vous pouvez créer une liste de voeux facilement depuis mon application web ! Cliquer sur le bouton juste en dessous pour continuer</p>
|
|
<div class="flex flex-row justify-between">
|
|
<p>test</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |