-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtickets.html
141 lines (107 loc) · 4.69 KB
/
tickets.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tickets</title>
<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=Archivo+Narrow:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header id="ticketPage">
<!-- change the id later but keep another image -->
<nav>
<ul class="menu">
<li>
<a href="index.html">
<img src="images/george-brown-tech-ff-high-resolution-logo-white-on-transparent-background.png"
class="logo" alt="Logo">
</a>
</li>
<li>
<a href="films.html">Films</a>
</li>
<li>
<a href="tickets.html">Tickets</a>
</li>
<li>
<a href="about-us.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<div class="backgroundImage">
</div>
</header>
<main>
<!-- Dates, Location -->
<section>
<h1>
Buy Passes down here ↓
<!-- added a down arrow character that will work with chrome -->
</h1>
<h2>Get your passes for the George Brown Tech Film Festival here<br>*Passes are free for students with a
valid GB ID</h2>
<!-- ticket options -->
<div id="orderBox">
<form id="purchaseForm" onsubmit="return false">
<label for="ticketType">Select Pass Type:</label>
<select id="ticketType" name="ticketType">
<option value="student" selected>Student Pass</option>
<option value="1 Day">1 Day Pass</option>
<option value="All Day">All Day Pass</option>
</select>
<br>
<label for="ticketQuantity">Enter Number of Passes:</label>
<input type="number" id="ticketQuantity" min="1" value="0">
<br>
<label for="creditCard">Enter a 6-digit Credit Card Number</label>
<input type="text" id="creditCard" name="creditCard">
<br>
<button type="button" id="payNowButton" onclick="checkForm()">Pay Now</button>
<div id="errorMessage">
<p id="errorText"></p>
</div>
</form>
<div id="orderSummary">
<!-- ticketbox -->
<div id="ticketbox">
<h3>Order Summary</h3>
<p>Pass Type: <span id="summaryTicketType"></span></p>
<p>Number of Passes: <span id="summaryQuantity"></span></p>
<p>Price per Pass: <span id="summaryPricePerTicket"></span></p>
<p>Subtotal: <span id="summarySubtotal"></span></p>
<p>Tax (13%): <span id="summaryTax"></span></p>
<p>Final Price: <span id="summaryFinalPrice"></span></p><br>
</div>
<div id="qrcode">
<img src="./images/qrcode.png">
</div>
</div>
</div>
</section>
<section>
<!-- Map -->
</section>
</main>
<footer>
<!-- copyright and social Media -->
<!-- maybe also languages -->
<p>Copyright: Darren Eddy, Julius Dejon, Sankarnath Suresh</p>
<ul>
<li><a href="#"><img class="icon" src="./images/free-twitter-logo-icon-2429-thumb.png"
alt="Twitter icon"></a></li>
<li><a href="#"><img class="icon" src="./images/social-instagram-icon-2048x2048-xuel0xhc.png"
alt="instagram Icon"></a></li>
<li><a href="#"><img class="icon" src="./images/letterboxd.png" alt="letterboxd Icon"></a></li>
</ul>
</footer>
<script src="js/ticket.js" defer></script>
</body>
</html>