-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckOut.html
More file actions
239 lines (224 loc) · 9.44 KB
/
Copy pathcheckOut.html
File metadata and controls
239 lines (224 loc) · 9.44 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Font Awesome Icons -->
<script
src="https://kit.fontawesome.com/8c4bde81e2.js"
crossorigin="anonymous"
></script>
<!-- CSS only -->
<link rel="stylesheet" href="scss/main.css" />
<!-- BootStrap Icons -->
<link
rel="stylesheet"
href="/node_modules/bootstrap-icons/font/bootstrap-icons.css"
/>
<title>EventScape®</title>
</head>
<body>
<!-- Start of Nav Bar -->
<nav class="navbar navbar-expand-lg bg-body-tertiary bg-primary">
<div class="container-fluid">
<a class="navbar-brand text-light" href="https://samdowneyca.netlify.app/">
<img
class="img-fluid logo ms-3"
src="images/logo.png"
alt="EventScape_Logo"
/>
EventScape®
</a>
<button class="navbar-toggler bg-light" type="button" data-bs-toggle="collapse" data-bs-target="#navbarScroll" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarScroll">
<div class="d-flex justify-content-end p-0">
</div>
<ul class="navbar-nav me-auto my-2 my-lg-0 navbar-nav-scroll" style="--bs-scroll-height: 100px;">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-light" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Organise
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-light" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Help/FAQ
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Sign in/Register</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2 text-light" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-light" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- End of Nav Bar -->
<div class="container-sm p-0">
<!-- Header -->
<div class="d-flex border border-top-0 border-end-0 border-start-0">
<div class="my-4">
<h2 class="m-0">Billing Information</h2>
</div>
</div>
<!-- Information -->
<!-- First Row -->
<div class="d-flex justify-content-between">
<!-- First Name -->
<div class="my-4 col-lg-5 col-md-5 col-sm-5">
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="First Name*">
</div>
<!-- Last Name -->
<div class="my-4 col-lg-5 col-md-5 col-sm-5">
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="Last Name*">
</div>
<!-- Second Row -->
</div>
<div class="d-flex justify-content-between">
<!-- Email -->
<div class="mt-2 mb-4 col-lg-5 col-md-5 col-sm-5">
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="Email Address*">
</div>
<!-- Confirm Email -->
<div class="mt-2 mb-4 col-lg-5 col-md-5 col-sm-5">
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="Confirm Email*">
</div>
</div>
<!-- Third Row -->
<!-- Card Number -->
<div class="mb-4 mt-3">
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="Card Number*">
</div>
<!-- Fourth Row -->
<div class="d-flex justify-content-between">
<!-- Date -->
<div class="mt-2 mb-4 col-lg-5 col-md-5 col-sm-5">
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="MM / YY*">
</div>
<!-- CCV -->
<div class="mt-2 mb-4 col-lg-5 col-md-5 col-sm-5">
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="CCV*">
</div>
</div>
<!-- Header -->
<div class="border border-top-0 border-end-0 border-start-0">
<div class="d-flex">
<div class="my-4">
<h2 class="m-0">Alternative Methods</h2>
</div>
</div>
<div class="border border-1 rounded">
<div class="d-flex align-items-center justify-content-between py-3 ps-2">
<div class="d-flex align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
</div>
<h5 class="m-0">PayPal</h5>
</div>
<i class="fa-brands fa-paypal fs-1 me-4"></i>
</div>
</div>
<div class="border border-1 rounded mt-3 mb-4">
<div class="d-flex align-items-center justify-content-between py-3 ps-2">
<div class="d-flex align-items-center">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
</div>
<h5 class="m-0">Google Pay</h5>
</div>
<i class="fa-brands fa-google-wallet fs-1 me-4"></i>
</div>
</div>
</div>
<!-- Check out Button -->
<div class="container-sm p-0 mt-4 mb-4 d-flex justify-content-end">
<a class="btn btn-primary" href="https://samdowneyca.netlify.app/" role="button">Check Out</a>
</div>
<!-- End of Container -->
</div>
<!-- Footer -->
<footer>
<div class="container-fluid bg-primary">
<div class="row justify-content-between">
<!-- Row 1 -->
<div class="pt-4 col-lg-3 col-md-2 col-sm-2">
<a class="navbar-brand text-light" href="#">
<img
class="img-fluid logo ms-3"
src="images/logo.png"
alt="EventScape_Logo"
/>
EventScape®
</a>
<p class="text-light ms-3 mt-3">
Check out our socials!
</p>
<!-- Icons -->
<div class="ms-3 mt-3 fs-5 d-flex">
<!-- Facebook -->
<i class="fa-brands fa-square-facebook text-light me-2"></i>
<!-- Twitter -->
<i class="fa-brands fa-twitter text-light me-2"></i>
<!-- Youtube -->
<i class="fa-brands fa-youtube text-light me-2"></i>
<!-- Instagram -->
<i class="fa-brands fa-instagram text-light"></i>
</div>
</div>
<!-- Row 2 -->
<div class="pt-4 col-lg-3 col-md-2 col-sm-1 text-light">
<p class="mb-2">Looking for help?</p>
<p class="fw-light mb-1">Help/FAQ</p>
<p class="fw-light mb-1">Your Account</p>
<p class="fw-light mb-1">Print Tickets</p>
<p class="fw-light mb-1">Groups</p>
<p class="fw-light mb-1">Gift Cards</p>
<p class="fw-light mb-5">Accessible Tickets</p>
</div>
<!-- Row 3 -->
<div class="pt-4 col-lg-3 col-md-2 col-sm-1 text-light">
<p class="mb-2">Entertainment Guides</p>
<p class="fw-light mb-1">Virtual Events</p>
<p class="fw-light mb-1">Event Management</p>
<p class="fw-light mb-1">Party Planning</p>
<p class="fw-light mb-1">Content Standards</p>
<p class="fw-light mb-1">Marketing Tools</p>
<p class="fw-light mb-5">All Cities</p>
</div>
<!-- Row 4 -->
<div class="pt-4 col-lg-3 col-md-2 col-sm-3 text-light">
<p class="mb-2">Corprate</p>
<p class="fw-light mb-1">Online RSVP</p>
<p class="fw-light mb-1">QR Codes for Events</p>
<p class="fw-light mb-1">Event Boost</p>
<p class="fw-light mb-1">Sitemap</p>
<p class="fw-light mb-1">Pricing</p>
<p class="fw-light mb-5">How it Works</p>
</div>
</footer>
<!-- End of Footer -->
</body>
<!-- JavaScript Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
</html>