UniSquat_Python/templates/date-select.html

25 lines
660 B
HTML
Raw Normal View History

2022-05-12 17:57:13 +02:00
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>UniSquat</title>
<link rel="stylesheet" type="text/css" href="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">
<label for="froom-date">Choisisssez une date :</label>
<input type="date" id="froom-date" name="froom-date">
</div>
<div class="flex">
<input type="submit" value="Valider">
</div>
</form>
</main>
<footer></footer>
</body>
</html>