-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpurchased.html
78 lines (75 loc) · 2.25 KB
/
purchased.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Checkout</title>
<link rel="stylesheet" type="text/css" href="./css/layout.css" />
</head>
<body>
<div class="nav-bar">
<a href="./index.html"><b>Oasis</b></a>
</div>
<script id="event-template" type="text/x-handlebars-template">
<div style="width:90%" class="event">
<img class="event-image" src="./images/{{image}}.jpg" />
<div class="info" style="width:90%">
<h3><a href="./checkout.html">{{name}}</a></h3>
<p>
${{price}} /hr
<br />
{{location}}
</p>
</div>
</div>
</script>
<script id="template" type="text/x-handlebars-template">
<div class = "event-info"style="margin-top: 5%;margin-left: -2%;">
<h1 style=" margin-left: 8.5%;">Thank you for your purchase!</h1>
<h6> If you'd like to cancel this purchase, please go your profile</h6>
<span style="line-height: 1.5;">
<b>Total Price:</b>
<br />
${{price}}
<br />
<br />
<b>Date:</b>
<br />
{{date}}
<br/>
<br/>
<b>Your Contact Info:</b>
<br />
Name: {{email}}
<br />
Phone number: {{phone}}
<br />
<br />
<b>Your Payment Info:</b>
<br />
Card Number: {{card}}
<br />
Expiration Date: {{exp}}
</span>
</div>
</script>
<div style="display:flex">
<div style="width:25%;margin-left: 2%;margin-top: 2%;" id="event-details">
</div>
<div id="details">
</div>
</div>
<div align="center" style="margin-top: -1%; margin-left:-5%">
<h3>Purchase another location?</h3>
<button onclick="window.location.href='index.html'"style="
width: 10%;
background-color: black;
color: white;
border-radius: 10px;
"><b>Return to Home</b></button>
</div>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/purchased.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/handlebars-v4.0.11.js"></script>
</body>
</html>