add base template + mainController
This commit is contained in:
23
templates/main/index.html.twig
Normal file
23
templates/main/index.html.twig
Normal 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 %}
|
||||
Reference in New Issue
Block a user