You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" type="text/css" href="{{dir}}/public/css/accueil.css">
|
|
<title>Alica - Accueil</title>
|
|
</head>
|
|
|
|
|
|
<!-- balise center provisoire c'est pour mes yeux -->
|
|
<body>
|
|
<header>
|
|
{% include 'menu.html' %}
|
|
</header>
|
|
|
|
<div style="text-align: center">
|
|
<h1>Accueil</h1>
|
|
<!-- Bienvenu suivie du mail des informations sessions de l'utilisateur -->
|
|
<p>{% if prenom and nom %}
|
|
Bienvenue, {{ prenom }} {{ nom }} {{id}}!
|
|
{% else %}
|
|
Bienvenue, invité!
|
|
{% endif %}</p>
|
|
<p>Vous êtes sur la page d'accueil</p>
|
|
{% if dVueErreur is not empty %}
|
|
<div class="CadreInput">
|
|
<div class="box">
|
|
<div class="error">
|
|
<ul>
|
|
{% for erreur in dVueErreur %}
|
|
<li>{{ erreur }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|