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.
ScienceQuest/project/src/templates/accueil.html

45 lines
1.1 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" href="../css/bootstrap.min.css">
<style>
body {
margin: 10px;
}
</style>
<title>Accueil</title>
</head>
<body>
<h1>Bienvenue sur Mini-Jeux</h1>
<!--TODO A DEPLACER DANS SA PROPRE VUE-->
{% if dVue.nomJeu is defined %}
<p>Jeu selectionné : {{dVue.nomJeu}}</p>
{% endif %}
{% if dVue.libelleDifficulte is defined %}
<p>Difficulte selectionné : {{dVue.libelleDifficulte}}</p>
{% endif %}
<!--FIN TODO-->
<div align="right">
{% if dVue.pseudo is defined %}
<p><a href="logout">{{dVue.pseudo}}</a></p>
<p><a href="historique">Historique</a></p>
{% else %}
<p><a href="login">Se connecter</a></p>
{% endif %}
</div>
<br><br><br><br>
<center>
<a href="joinParty">Rejoindre une partie</a>
<a href="createParty">Créer une partie</a>
</center>
<script src="../js/bootstrap.min.js"></script>
</body>
</html>