UniSquat_Python/templates/dept-select.html

22 lines
582 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>UniSquat</title>
<link rel="stylesheet" type="text/css" href="../static/style.css">
</head>
<body>
<header>UniSquat</header>
<main>
Sélectionnez des départements dans la liste :
<form action="/free-rooms" method="post">
<input type="submit" value="Valider">
<br>
{% for d in dept_list : %}
<input type="radio" id="{{ d }}" name="dept" value="{{ d }}"><br>
{% endfor %}
</form>
</main>
<footer></footer>
</body>
</html>