25 lines
660 B
HTML
25 lines
660 B
HTML
<!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>
|