26 lines
822 B
HTML
26 lines
822 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<html>
|
|
<body>
|
|
<h1>Page de notes</h1>
|
|
{% for note in notes %}
|
|
<div >{{note[1]}} : {{note[2]}}</div>
|
|
{% endfor %}
|
|
<form action="/notes" method="post">
|
|
<!-- Champs matiere -->
|
|
<label for="mat">Matiere :</label>
|
|
<input id="mat" name="mat" type="text" placeholder="Virtualisation">
|
|
|
|
<!-- Champ note-->
|
|
<label for="note">Note :</label>
|
|
<input id="note" name="note" type="number" placeholder="10">
|
|
|
|
<!-- Button connecter -->
|
|
<input type="submit" value="envoyer">
|
|
<input type="hidden" value={{login}}>
|
|
</form>
|
|
</body>
|
|
<a href="/logout">Se deconnecter</a>
|
|
</html> |