-
Notifications
You must be signed in to change notification settings - Fork 0
/
tickets.html
142 lines (141 loc) · 5.42 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
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tickets</title>
<link rel="stylesheet" href="assets/css/bootstrap.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/tickets.css">
<link rel="stylesheet" href="assets/css/style.css">
<script src="./dist/tickets.bundle.js" defer ></script>
</head>
<body class="tickets-bg">
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<div class="container">
<a class="navbar-brand" href="./index.html">Food Festival</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="schedule.html">Schedule</a>
</li>
<li class="nav-item active">
<span class="sr-only">(current)</span>
<a class="nav-link" href="tickets.html">Tickets</a>
</li>
</ul>
</div>
</nav>
<div class="ticket-container container mt-10">
<h1>
Ticket Options
</h1>
<table class="table table-striped table-dark" id="ticket-table">
<thead>
<tr>
<th scope="col">Options</th>
<th scope="col">1-Day Pass</th>
<th scope="col">2-Day Pass</th>
<th scope="col">3-Day Pass</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Single Pass</th>
<td>$25</td>
<td>$50</td>
<td>$70</td>
</tr>
<tr>
<th scope="row">Pack 2</th>
<td>$40</td>
<td>$90</td>
<td>$120</td>
</tr>
<tr>
<th scope="row">Pack of 3</th>
<td>$55</td>
<td>$80</td>
<td>$105</td>
</tr>
</tbody>
</table>
<div class="col text-center">
<button type="button" class="btn btn-primary purchase" data-toggle="modal" data-target="#purchaseModal">Purchase Tickets!</button>
</div>
</div>
<div class="modal fade" id="purchaseModal" tabindex="-1" role="dialog" aria-labelledby="purchaseModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="purchaseModalLabel">Purchase Tickets</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<select class="form-control form-control-lg option1">
<option>1-Day-Package</option>
<option>2-Day-Package</option>
<option>3-Day-Package</option>
</select>
<select class="form-control">
<option>Single</option>
<option>2 Passes</option>
<option>3 Passes</option>
</select>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="purchaseEmail" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Nevermind!</button>
<button type="button" class="btn btn-primary" id="purchaseBtn">Purchase</button>
</div>
</div>
</div>
</div>
<footer class="page-footer" id="ticket-footer">
<div class="container">
<div class="row">
<div class="col-md-12 py-5">
<div class="flex-center">
<!-- Facebook -->
<a>
<i class="fa fa-facebook fa-lg text-white mr-md-5 mr-3 fa-2x"> </i>
</a>
<!-- Twitter -->
<a>
<i class="fa fa-twitter fa-lg text-white mr-md-5 mr-3 fa-2x"> </i>
</a>
<!-- Google +-->
<a>
<i class="fa fa-google-plus fa-lg text-white mr-md-5 mr-3 fa-2x"> </i>
</a>
<!--Instagram-->
<a>
<i class="fa fa-instagram fa-lg text-white mr-md-5 mr-3 fa-2x"> </i>
</a>
<!--Pinterest-->
<a>
<i class="fa fa-pinterest fa-lg text-white fa-2x"> </i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="footer-copyright text-center py-3 text-white">© Food Festival Est. 2019</div>
</footer>
</body>
</html>