31 lines
921 B
HTML
31 lines
921 B
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 %}
|
|
</form>
|
|
</main>
|
|
{% include "footer.html" %}
|
|
</body>
|
|
</html>
|