add base template + mainController

This commit is contained in:
Olivier PARPAILLON
2024-11-18 15:52:10 +01:00
parent e0935ec69d
commit e5307da3e1
6 changed files with 183 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{% 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-512.png') }}" 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 %}