-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (78 loc) · 3.67 KB
/
index.html
File metadata and controls
84 lines (78 loc) · 3.67 KB
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
<!DOCTYPE html>
<head>
<meta name="description" content="A mock app. Supposed to be a platform where you can reserve a table at a restaurant."/>
<meta name="keywords" content="HellenicDev, programming, HTML, CSS, JS, open-source, projects, web-developement, hellenic, dev, developer, mock, app, application, e-table, table, reserve, reservation, restaurant, tool, tools"/>
<meta name="author" content="HellenicDev"/>
<meta name="theme-color" content="#19336e"/>
<html lang="en">
<meta property="og:title" content="HellenicDev">
<meta property="og:description" content="Programming projects, experiments, and tools by HellenicDev.">
<meta property="og:image" content="https://hellenicdev.github.io/logo.webp">
<meta property="og:url" content="https://hellenicdev.github.io">
<meta property="og:type" content="website">
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9FWQFZME3Z');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Reservation</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<a href="/">
<img src="https://hellenicdev.github.io/logo.webp" alt="Logo" class="site-logo">
</a>
<div class="container">
<h1>Restaurant Reservation</h1>
<!-- Restaurant Menu -->
<div id="restaurantMenu" class="menu">
<h2>Choose a Restaurant</h2>
<button class="restaurantButton" data-restaurant="Restaurant 1">Restaurant 1</button>
<button class="restaurantButton" data-restaurant="Restaurant 2">Restaurant 2</button>
<button class="restaurantButton" data-restaurant="Restaurant 3">Restaurant 3</button>
<button class="restaurantButton" data-restaurant="Restaurant 4">Restaurant 4</button>
<!-- Add more buttons as needed -->
</div>
<!-- Date and Time Picker -->
<div id="dateTimeSection" class="hidden">
<h2>Select a Date and Time</h2>
<input type="date" id="reservationDate" />
<input type="time" id="reservationTime" />
<!-- Enter Button to go to the next screen -->
<button id="enterButton" class="enterButton">Enter</button>
</div>
<!-- Reservation Info -->
<div id="reservationInfoSection" class="hidden">
<h2>Enter Your Reservation Details</h2>
<label for="reservationName">Name: </label>
<input type="text" id="reservationName" placeholder="Your Name" required />
<label for="reservationEmail">Email: </label>
<input type="email" id="reservationEmail" placeholder="Your Email" required />
<button id="submitReservation">Submit Reservation</button>
</div>
<!-- Confirmation Message -->
<div id="confirmationMessage" class="hidden">
<!-- Back Button -->
<button id="backButton" class="backButton">Back</button>
<h2>Reservation Confirmed!</h2>
<p id="confirmationDetails"></p>
</div>
</div>
<script src="script.js"></script>
</body>
<style>.site-logo {
position: fixed; /* stays visible at all times */
top: 10px;
left: 10px;
width: 60px; /* adjust size */
height: auto;
z-index: 9999; /* stays above everything */
}</style>
<footer style="position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999; text-align: center; font-size: 14px; color: gray; background: white;
">
© 2025-2026 HellenicDev — All projects and content belong to HellenicDev.
</footer>
</html>