This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
288 lines (267 loc) · 8.72 KB
/
events.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
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!DOCTYPE html>
<html>
<head>
<title>Travel Pack</title>
<!-- Google Font - Montserrat | REF: http://bit.ly/2xQ4KNM -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,600" rel="stylesheet">
<!-- Font Awesome | REF: http://fontawesome.io/license/ -->
<script src="https://use.fontawesome.com/9f0f64771e.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- jQuery plugings | REF: https://jquery.com/ -->
<script type="text/javascript" src="js/jquery-3.2.1.js"></script>
<script type="text/javascript" src="js/writeEvents.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<!-- Page Options -->
<link rel="icon" href="images/logo.png">
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
</head>
<body class="events">
<!-- Navigation Bar -->
<div class="nav-container">
<ul class="nav-bar">
<li>
<a href="#">
<img id="events" class="svg nav-btn-svg nav-btn-svg-selected" src="images/icons/calendar-active.png" alt="Events"/>
</a>
</li>
<li>
<a href="map.html">
<img id="map" class="svg nav-btn-svg" src="images/icons/map.png" alt="Map"/>
</a>
</li>
<li>
<a href="profile.html">
<img id="profile" class="svg nav-btn-svg" src="images/icons/profile.png" alt="Profile"/>
</a>
</li>
</ul>
</div>
<!-- Create Event -->
<div class="create-event">
<ul class="edit-header">
<li id="cancel-create">Cancel</li>
<li class="create-event-h1">Create New Event</li>
<li id="save-create">Done</li>
</ul>
<div id="create-event-cont-id" class="create-event-container">
<!-- Overlay -->
<div id="create-event-image">
<!-- Event Image -->
<div class="image-overlay"><input type="submit" value="Upload Image" name="submit"></div>
</div>
<table id="edit-profile-details">
<tr class="edit-details-line">
<td>
<p class="required">*</p>
<h1 class="edit-profile-h1">Event Name</h1>
</td>
<td>
<input id="event-name" class="text-input general-input-fields" type="text" name="ename">
</td>
</tr>
<tr class="edit-details-line">
<td>
<p class="required">*</p>
<h1 class="edit-profile-h1">Time</h1>
</td>
<td>
<input id="event-time" class="text-input general-input-fields" type="time" name="time" value='now'>
</td>
</tr>
<tr class="edit-details-line">
<td>
<p class="required">*</p>
<h1 class="edit-profile-h1">Date</h1>
</td>
<td>
<input id="event-date" class="text-input general-input-fields" type="date" name="date" value='now'>
</td>
</tr>
<tr class="edit-details-line">
<td>
<p class="required">*</p>
<h1 class="edit-profile-h1">Location</h1>
</td>
<td>
<div class="relative">
<input id="event-location" class="text-input general-input-fields" type="text" name="location">
<i id="geo-locate" class="fa fa-location-arrow" aria-hidden="true"></i>
</div>
</td>
</tr>
<tr class="edit-details-line">
<td>
<h1 class="edit-profile-h1">Price</h1>
</td>
<td>
<input id="event-price" class="text-input general-input-fields" type="text" name="price">
</td>
</tr>
<tr class="edit-details-line">
<td>
<h1 class="edit-profile-h1">Description</h1>
</td>
<td>
<textarea id="event-desc" class="text-input" type="textarea" name="desc"></textarea>
</td>
</tr>
<tr class="edit-details-line">
<td>
<h1 class="edit-profile-h1">Event Tags</h1>
</td>
<td class="relative">
<input id="create-event-tags" class="text-input general-input-fields" type="text" name="etags" value="hi">
<p id="events-subheading" class="edit-profile-h1">Separate with commas</p>
</td>
</tr>
</table>
</div>
</div>
<!-- END Create Event -->
<!--START Location Selector Screen -->
<div id="locationSelector">
<button class="back-btn" id="locations-back-btn"><i class="fa fa-arrow-circle-left" aria-hidden="true"></i></button>
<div class="locations-container">
<h1 class="location-h1">Location</h1>
<div class="search-box-location">
<input id="keyword" class="text-input" type="text" name="keyword" placeholder="Search..."><input class="search-btn" type="submit" value="Submit">
</div>
<div id="suggested-locations">
<ul>
<li id="location-1"><b>Brisbane</b><br><i>Brisbane, Queensland Australia</i></li>
<li id="location-2"><b>Queen Street Mall</b><br><i>Brisbane, Queensland Australia</i></li>
<li id="location-3"><b>Brisbane City Hall</b><br><i>King George Square</i></li>
<li id="location-4"><b>Story Bridge</b><br><i>Brisbane City, Queensland</i></li>
<li id="location-5"><b>Wilson Outlook Reserve</b><br><i>231 Bowen Terrace, New Farm, Qld</i></li>
<li id="location-6"><b>Kangaroo Point</b><br><i>Brisbane, Queensland</i></li>
<li id="location-7"><b>The Gabba</b><br><i>Vulture St, Woolloongabba,Qld</i></li>
<li id="location-8"><b>South Bank Parklands</b><br><i>SoutBrisbane, Queensland</i></li>
<li id="location-9"><b>The Wheel of Brisbane</b><br><i>South Brisbane, Queensland</i></li>
<li id="location-10"><b>GOMA Gallery of Modern Art</b><br><i>Stanley Pl, South Brisbane, Qld</i></li>
</ul>
</div>
</div>
</div>
<div class="events-container">
<i id="search-event" class="fa fa-search" aria-hidden="true"></i>
<h1 class="events-h1">Events</h1>
<div class="add-event"><span>Add New Event</span><img id="add-event-plus" src="images/plus.png"></div>
<p class="event-separator">Recommended for you</p>
<!-- OKTOBERFEST -->
<div id="oktoberfest" class="card">
<!-- Event Image -->
<div class="event-image">
<img class="event-image-display" src="images/events/oktoberfest/oktoberfest1.jpg">
</div>
<div class="card-info">
<h2 class="events-h2">Oktoberfest</h2>
<ul class="card-info-details">
<li>
<p class="events-p">Brisbane Showgrounds, Brisbane</p>
<p class="events-p">$24</p>
</li>
<li>
<p class="events-p">Currently here</p>
<p class="events-p">122 <i id="currently-here" class="fa fa-users" aria-hidden="true"></i></p>
</li>
</ul>
<div id="card-info-tags">
<ul id="events-tags" class="tags">
<li>Germany</li>
<li>Beer</li>
<li>Drinking</li>
<li>Festival</li>
<li>Cultural</li>
</ul>
</div>
</div>
</div>
<!-- OPEN AIR CINEMAS -->
<div id="open-air" class="card">
<!-- Event Image -->
<div class="event-image">
<img class="event-image-display" src="images/events/open-air/open-air1.jpg">
</div>
<div class="card-info">
<h2 class="events-h2">Open Air Cinemas</h2>
<ul class="card-info-details">
<li>
<p class="events-p">The Arbour, South Brisbane</p>
<p class="events-p">$20</p>
</li>
<li>
<p class="events-p">Currently here</p>
<p class="events-p">42 <i id="currently-here" class="fa fa-users" aria-hidden="true"></i></p>
</li>
</ul>
<div id="card-info-tags">
<ul id="events-tags" class="tags">
<li>Cinemas</li>
<li>Southbank</li>
<li>Tickets</li>
</ul>
</div>
</div>
</div>
<!-- EMPORIUM HOTEL -->
<div id="emporium" class="card">
<!-- Event Image -->
<div class="event-image">
<img class="event-image-display" src="images/events/emporium/emporium1.jpg">
</div>
<div class="card-info">
<h2 class="events-h2">Live Music at the Emporium Hotel</h2>
<ul class="card-info-details">
<li>
<p class="events-p">Fortitude Valley, Brisbane</p>
<p class="events-p">$0 +</p>
</li>
<li>
<p class="events-p">Currently here</p>
<p class="events-p">23 <i id="currently-here" class="fa fa-users" aria-hidden="true"></i></p>
</li>
</ul>
<div id="card-info-tags">
<ul id="events-tags" class="tags">
<li>Music</li>
<li>Band</li>
<li>Food</li>
<li>Drinking</li>
<li>Live</li>
</ul>
</div>
</div>
</div>
<p class="event-separator">Others Events in The Area</p>
<!-- CHAKRADANCE -->
<div id="chakradance" class="card">
<!-- Event Image -->
<div class="event-image">
<img class="event-image-display" src="images/events/chakradance/chakradance1.jpg">
</div>
<div class="card-info">
<h2 class="events-h2">Full Moon Chakradance Circle</h2>
<ul class="card-info-details">
<li>
<p class="events-p">Annerley, Brisbane</p>
<p class="events-p">$0</p>
</li>
<li>
<p class="events-p">Currently here</p>
<p class="events-p">14 <i id="currently-here" class="fa fa-users" aria-hidden="true"></i></p>
</li>
</ul>
<div id="card-info-tags">
<ul id="events-tags" class="tags">
<li>Chakra</li>
<li>Dance</li>
<li>Spiritual</li>
<li>Enlightenment</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>