-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (70 loc) · 3.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Eventaroo - Event search</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Kodchasan:400,500,700|Permanent+Marker" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="css/normalize.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<meta name="description" content="Eventaroo is the best place to find out what events are happening around you.">
</head>
<body>
<!-- Header that will always show the logo -->
<header role="banner" class="banner banner-landing background-image clearfix">
<div class="logo landing-logo"><a href="index.html"><span class="orange">Event</span>aroo</a></div>
<!-- This is an area where the user can easily log out of Google using OAuth2 -->
<div id="firebaseui-auth-container" class="js-signon-container hidden">
<span class="username"></span>
<input type="button" name="google-sign-in" class="js-google-sign-in" value="Log in with Google">
<input type="button" name="log-out" class="js-log-out" value="Log out">
</div>
</header>
<!-- This section will output any errors that we recieve that the user needs to know about -->
<section role="region" class="js-error-output error center">
</section>
<!-- This is the Landing Page which is the first thing the user sees -->
<section role="region" class="landing-container center">
<form class="js-form">
<div class="form-line">
<label for="location" class="find-events">Find events near... </label>
</div>
<div class="form-line">
<label for="near-me"></label>
<button id="near-me" class="js-near-me"><i class="fas fa-map-marker-alt"></i></button>
<input type="text" name="location" class="js-location" id="my-location" placeholder="Denver, Colorado" required>
<input name="submit" class="submit-landing" type="submit" value="Go!">
</div>
<div class="form-line">
<label for="free-mode" class="find-events">Show only free events</label>
<input type="checkbox" name="free-mode" class="js-free-mode">
</label>
</div>
</form>
</section>
<section role="region" class="filter-results hidden">
<!-- Javascript will put the filter section here -->
</section>
<section role="region" class="results-container hidden">
<!-- Javascript will put results html here -->
</section>
<nav role="navigation" id="pagination-bottom" class="pagination center hidden">
<!-- Pagination arrows to scroll through results -->
</nav>
<button id="top-button" class="top-button" value="Go to top">Back to top of page</button>
<footer role="contentinfo" class="center">
<p class="footer-credit">This project was made by Nick Dean and the source can be found <a href="https://github.com/KliCk5000/eventaroo">here
on Github</a>.</p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.5.7/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.5.7/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.5.7/firebase-database.js"></script>
<script src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script>
<script src="js/firebase.js"></script>
<script src="js/geolocation.js"></script>
<script src="js/index.js"></script>
</body>
</html>