-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (55 loc) · 2.29 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
<!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">
<title>House Show ⌂</title>
<script src="src/index.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css"
integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
</head>
<body>
<header id="show-header">
<h1>House Show ⌂</h1>
</header>
<div class = "main-nav">
<nav class = "btn-group">
<button class="btn btn-default">Events</button>
<button class="btn btn-default">Performers</button>
<button class="btn btn-default">Neighborhoods</button>
</nav>
</div>
<!-- <br /> -->
<div id="new-event-background">
<button id="new-event-btn" class="btn btn-default">+ New House Show</button>
</div>
<!-- <br /> -->
<div class="form-container">
<form class="add-event-form">
<div data-event-id="form-title"></div>
<label>House Show:</label>
<div data-event-id="name-field"></div>
<label>Where?</label>
<div data-event-id="address-field"></div>
<label>When?</label>
<div data-event-id="date-time-field"></div>
<label>Neighborhood?</label>
<div data-event-id="neighborhood-select"></div>
<br>
<div data-event-id="submit"></div>
</form>
</div>
<div class = "card-container">
</div>
</body>
<footer class="footer">
<p>Made with Love by Lluis and Alex
<span class="glyphicon glyphicon-heart-empty"></span>
</p>
</footer>
</html>