UniSquat_Python/templates/date-select.html

34 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>UniSquat</title>
<link rel="stylesheet" type="text/css" href="../static/style.css">
<meta name="viewport" content="width=300, initial-scale=1" />
</head>
<body>
{% include "base.html" %}
<main>
<form action="/app/free-rooms" method="get">
<div class="flex"><p>Choisisssez une date</p></div>
<div class="flex">
<input type="date" id="froom-date" name="date"/>
</div>
<div class="flex">
<input type="time" id="froom-time" name="time"/>
</div>
<div class="flex">
<input type="submit" value="Valider">
</div>
{% for d in dident_list : %}
<span style="display: none;"><input type="text" name="dept" value="{{ d }}"/></span>
{% endfor %}
{% for f in favs_ids : %}
<span style="display: none;"><input type="text" name="favs" value="{{ f }}"/></span>
{% endfor %}
</form>
</main>
{% include "footer.html" %}
</body>
</html>