-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirmation.html
More file actions
40 lines (30 loc) · 952 Bytes
/
confirmation.html
File metadata and controls
40 lines (30 loc) · 952 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="confirmation.css">
<style>
@import url('https://fonts.googleapis.com/css?family=Copse|Gentium+Book+Basic|Julius+Sans+One|Neuton|Rock+Salt|Unica+One');
</style>
<title>Reservation Confirmation</title>
</head>
<body>
<header>
<h1>Congrats! You just made a reservation.</h1>
<h3> Here are the details: </h3><hr id="line"><br>
</header>
<div id="confirmation">
<span id="left">
</span>
<span id="right">
</span>
<!-- <span id="moreRight">
<button id="myRes" onclick="window.location.href='myres.html'">My Reservations</button>
</span> -->
</div><br>
<nav>
<div class="headerText"><a href="index.html" class="mainPageLink">Back to the main page</a></div>
</nav>
<script type="text/javascript" src="confirmation.js"></script>
</body>
</html>