-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (58 loc) · 2.99 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html>
<head>
<title> © SOJU 소주 Reserveringen </title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/weather.css"/>
<script src="https://kit.fontawesome.com/dcb2a70d47.js" crossorigin="anonymous"></script>
</head>
<header>
<nav>
<a href="index.php"><img src="images/IMG_6803.jpg" width="300" height="90" class="logo"></a>
<ul>
<li><a href="index.php">Home Page</a></li>
<li><a href="https://sojubar.nl/wp-content/uploads/2021/07/soju_menu_v6-pages-1-2.pdf"> menukaart SOJU </a></li>
<li><a href="https://sojubar.nl/#contact"> contact en officiele website </a></li>
<li><a href="login.php">Login</a></li>
</ul>
</nav>
</header>
<body>
<div class="center">
<h1> SOJU 소주 Online Tafel Reserveren</h1>
<p class="red-color">Chicken by day..
Soju by night..</p>
<p class="purple-color"> u kunt ons telefonisch bereiken via (010 303 7854) </p>
<div id="error"></div>
<form id="form" action="<?= htmlspecialchars($_SERVER['REQUEST_URI']); ?>" method="post" enctype="multipart/form-data">
<div class="data-field">
<label for="Uw Naam"></label>
<input id="naam" type="text" placeholder="Uw Naam" name="naam" value="<?= (isset($name) ? $name : ''); ?>" />
<span><?= (isset($errors['Uw Naam']) ? $errors['Uw Naam'] : '') ?></span>
<label for="Uw Telefoonnummer"></label>
<input id="telefoonnummer" type="text" placeholder="Uw Telefoonnummer" name="telefoonnummer" value="<?= (isset($telnr) ? $telnr : ''); ?>" required/>
<label for="Uw Email"></label>
<input id="email" type="email" placeholder="Uw E-mail" name="mail" value="<?= (isset($mail) ? $mail : ''); ?>" required/>
</div>
<div class="data-field">
<label for="dd-mm-jjjj"></label>
<input id="dd-mm-jjjj" type="date" placeholder="Datum" name="datum" value="<?= (isset($datum) ? $datum : ''); ?>" required/>
<label for="Tijd"></label>
<input id="tijd" type="time" placeholder="Tijd" name="tijd" value="<?= (isset($time) ? $time : ''); ?>" />
<label for="Aantal Personen"></label>
<input id="personen" type="number" placeholder="Aantal Personen" name="personen" value="<?= (isset($personen) ? $personen : ''); ?>" required/>
</div>
<div class="data-field">
<label for="Opmerkingen"></label>
<input id="opmerkingen" type="text" placeholder="Opmerkingen" name="opmerkingen" value="<?= (isset($opmerkingen) ? $opmerkingen : ''); ?>"/>
</div>
<div class="data-submit">
<input type="submit" class="btn" name="submit" value="RESERVEER NU"/>
</div>
</form>
</div>
</body>
</html>