-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.html
87 lines (72 loc) · 3.03 KB
/
app.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M"
crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
<script src="https://www.gstatic.com/firebasejs/4.5.1/firebase.js"></script>
<script src="https://use.fontawesome.com/a043487d1c.js"></script>
</head>
<body>
<div class="jumbotron">
<div class="row">
<div class="col-4">
<img src="assets/images/giphy.webp" alt="skyline">
</div>
<div class="col-8">
<h1 class="display-3">EventHub.</h1>
</div>
</div>
</div>
<div class="row">
<div class="search-card col-12">
<form class="container-fluid">
<div id="band-info" class="form-group col-6" style="display: inline-block">
<label for="exampleInputEmail1">What do you want to see?</label>
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
</div>
<div id="locate" class="form-group col-5" style="display: inline-block">
<label for="exampleInputPassword1">Where do you want to see it?</label>
<input type="text" class="form-control" id="exampleInputPassword1">
</div>
<button id="infoSubmit" class="btn btn-sm active" style="background-width: 20%; background-color: darkred; border-color: #bc2220; color: #ffffff"
role="button" aria-pressed="true">Submit
</button>
</form>
</div>
</div>
<div id="cards"></div>
<div class="container" id="map"></div>
<table class="table table-striped table-inverse" id="results-table">
<thead>
<tr>
<th>Name</th>
<th>Venue</th>
<th>City</th>
<th>State</th>
<th>Date</th>
<th>Tickets</th>
<th>Map/Directions</th>
<th>Remove</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="card text-center">
<div class="card-footer">
CopyRight@CalendarComplete
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1"
crossorigin="anonymous"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA-7z8l4lKh-zR9LvQqO-43vRrF8gPNtpc"></script>
<script type="text/javascript" src="assets/javascript/app.js"></script>
</body>
</html>