Restructuration du projet et récupération des modifications les plus récentes

This commit is contained in:
2023-05-15 04:28:05 +02:00
parent 626f8359cf
commit ac895c9be8
6 changed files with 159 additions and 30 deletions

View File

@ -19,8 +19,9 @@
<body>
<header>
<div id="identification">
<a href="/logout">Se déconnecter</a>
<div id="schoolid">Lycée polyvalent Alain-René Lesage</div>
<div id="userid">Espace Élèves - NOM Prénom (Classe)</div>
<div id="userid">Espace Élèves - {{ s.user.nom }} {{ s.user.prenom }}</div>
</div>
<ul id="navbar">
{% for url, label, style in menuitems %}

View File

@ -0,0 +1,17 @@
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Se connecter</title>
</head>
<body>
<form method="post">
<input type="text" name="username">
<input type="password" name="password">
<input type="submit">
</form>
</body>
</html>