-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
104 lines (89 loc) · 4.31 KB
/
index.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
<!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" />
<title>Event Finder</title>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<script src="https://kit.fontawesome.com/ea187b7c6b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:wght@200&family=Outfit:wght@100&family=Righteous&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./assets/style.css" />
<link rel="icon" href="./assets/favicon.png" />
</head>
<body class="container is-fluid has-text-light has-background-dark hero is-small">
<header class="is-fluid block hero-body">
<nav class="navbar has-background-dark is-mobile" role="navigation" aria-label="main navigation">
<div class="navbar-end is-mobile">
<div class="navbar-item is-mobile">
<div class="buttons">
<a class="button is-primary">
<strong>Sign up</strong>
</a>
<a class="button is-light">
Log in
</a>
</div>
</div>
</div>
</nav>
<h1 id="title" class="title is-size-2-mobile has-text-light has-text-centered pt-6">Event Finder</h1>
<div id="current-date-time" class="subtitle has-text-light has-text-centered"></div>
</header>
<div>
<p id="comment" class="has-text-centered m-2 is-size-5 is-size-6-mobile">
Use this handy event locator to find events in your area. Just type
in your location below, and let it find the perfect event for you!
</p>
</div>
<div id="search-container" class="level column is-5">
<form id="search-box" class="control has-icons-left level-item is-flex">
<input autocomplete="on" spellcheck="true" autocapitalize="on" type=text id="keywords" name="event-search"
onfocus=" this.value=''" placeholder="Enter a location"
class="input is-normal has-background-dark has-text-light is-flex is-justify-content-center"></input>
<span class=" icon is-medium is-left">
<i class="fas fa-map-marked-alt"></i>
</span>
<button id="searchBtn" class="button has-background-dark has-text-light">Search</button>
</form>
</div>
<section id="container" class="columns pb-5">
<div id="map" class="mt-6 ml-5 pt-3 mr-3 column is-two-thirds"></div>
<fieldset id="events" class="column m-3">
<legend class="has-text-centered is-size-4">
<h2><i class="far fa-calendar"></i> Local Events <i class="far fa-calendar"></i> </h2>
</legend>
<div id="events-list" class="has-text-dark is-size-6-mobile"></div>
</fieldset>
</section>
<section class="container has-text-centered mb-6">
<h2 id="past-search" class="mb-3 is-size-4"><i class="fas fa-map-marker-alt"></i> Past Searches <i
class="fas fa-map-marker-alt"></i>
</h2>
<div id="past_searches" class="is-flex-direction-row is-justify-content-space-between"></div>
<button type="button" id="clearBtn"
class="button is-outlined has-background-dark has-text-light mt-3">Clear</button>
</section>
<footer id="contact"
class="footer has-text-light has-background-dark has-text-centered is-flex-direction-colmn is-flex-justify-content-center ">
<p class="has-text-centered is-size-8"> Coded as part of the Monash Coding Bootcamp program
2022
</p>
<div>
<a class="icon-center is-size-3 m-1" href="https://github.com/ekubik/event-finder"><i
class="fab fa-github fa-inverse"></i></a>
<a class="icon-center is-size-3 m-1" href="https://twitter.com"><i class="fab fab fa-twitter fa-inverse"></i></a>
<a class="icon-center is-size-3 m-1" href="mailto:@gmail.com"><i class="fab far fa-envelope fa-inverse"></i></a>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"></script>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBiZYv6s5ocv7IYkiRQLleoe8MXRsMqtRc&callback=initMap&libraries=places&v=weekly""
async></script>
<script src=" ./assets/script.js"></script>
</body>
</html>