-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreservierung.php
91 lines (88 loc) · 4.25 KB
/
reservierung.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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
session_start();
include 'admin/connect.php';
?>
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<!--<meta http-equiv="content-language" content="hr-HR"/>-->
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<meta property="og:type" content="website"/>
<meta property="og:title" content="El Paso"/>
<meta property="og:description" content=""/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="fontawesome/css/all.css">
<script src="https://kit.fontawesome.com/9f52e31018.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="show.js"></script>
<link rel="stylesheet" href="css/style.css">
<title>El Paso</title>
<link rel="shortcut icon" href="img/favicon.png" />
<style>
body {
background-image: none;
}
</style>
</head>
<body>
<div id="page" class="animate__animated animate__fadeIn"> <!-- animate__delay-4s -->
<input type="checkbox" id="active">
<label for="active" class="menu-btn"><i class="fas fa-bars"></i></label>
<div class="wrapper">
<ul>
<li><a href="index.php">HOME</a></li>
<li><a href="menu.php">SPEISEKARTE</a></li>
<li><a href="reservierung.php">RESERVIERUNG</a></li>
<li><a href="anfahrt.php">ANFAHRT</a></li>
</ul>
</div>
<nav id="navigation">
<a href="index.php">HOME</a>
<a href="menu.php">SPEISEKARTE</a>
<a href="reservierung.php" class="active_menu">RESERVIERUNG</a>
<a href="anfahrt.php">ANFAHRT</a>
</nav>
<form action="skripta.php" method="POST">
<div class="res-group">
<input type="text" id="name" name="visitor_name" placeholder="John Doe" pattern=[A-Z\sa-z]{3,20} required>
</div>
<div class="res-group">
<input type="email" id="email" name="visitor_email" placeholder="john.doe@email.com" required>
</div>
<div class="res-group">
<input type="tel" id="phone" name="visitor_phone" placeholder="498-348-3872" required>
</div><br/>
<div class="res-group">
<label for="number_people">Number of people:</label>
<input type="number" id="visitors" name="number_people" placeholder="2" min="1" max="9" class="visitors" required>
</div><br/>
<div class="res-group">
<!--<label for="date">Date</label><br/>-->
<input type="date" id="date" name="date" class="date" min="2022-03-01" max="2022-12-31" value="2022-03-01" required>
</div><!--<br/>-->
<div class="res-group">
<!--<label for="time">Time</label><br/>-->
<input type="time" id="time" name="time" class="time" style="text-align:center;" min="11:30" max="22:00" value="11:30" required>
</div><br/>
<!--<div class="res-group">
<label for="message">Anything Else?</label><br/>
<textarea id="message" name="visitor_message" placeholder="Tell us anything else that might be important." required></textarea>
</div>-->
<button name="submit" type="submit">SUBMIT</button>
</form>
</div>
<script type="text/javascript">
$(window).scroll(function(){
if ($(this).scrollTop() > 0) {
$('#navigation').addClass('change_color');
} else {
$('#navigation').removeClass('change_color');
}
});
</script>
</body>