-
Notifications
You must be signed in to change notification settings - Fork 0
/
select-date.php
32 lines (29 loc) · 1009 Bytes
/
select-date.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<title>Nieuwe reservering - datum</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
</head>
<body>
<section class="container">
<div class="content">
<h1 class="title">Maak een nieuwe reservering aan</h1>
<form action="select-time.php" method="get">
<div class="field">
<label for="date" class="label">Selecteer een datum</label>
<div class="control">
<input id="date" class="input" type="date" name="date" value="<?= date('Y-m-d') ?>">
</div>
</div>
<div class="field">
<div class="control">
<button class="button is-link">Kies een tijd</button>
</div>
</div>
</form>
</div>
<a class="button mt-4" href="../index.html">« Terug naar de index</a>
</section>
</body>
</html>