-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (86 loc) · 3.05 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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/jquery-3.3.1.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/styles.css">
<meta charset="utf-8">
<title>SettleIt</title>
</head>
<body>
<div class="jumbotron">
<h1>SettleIt: Tu Musica, Tu Dinero</h1>
</div>
<div class="container"><br>
<h5>SettleIt will help you settle accounts efficiently with venues & band members, get what's coming to you, &
spend the time you save creating more music!</h5><br>
<div class="row">
<div class="col-md-12">
<h3>Band name & main contact deets:</h3><br>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div id="band-contacts">
<form id="band-contact">
<div class="form-group">
<label for="new-band">Band's name:</label>
<input type="text" id="new-band">
</div>
<div class="form-group">
<label for="contact-firstName">Main contact first name:</label>
<input type="text" id="contact-firstName">
</div>
<div class="form-group">
<label for="contact-lastName">Main contact last name:</label>
<input type="text" id="contact-lastName">
</div>
<div class="form-group">
<label for="contact-email">Email address:</label>
<input type="text" id="contact-email">
</div>
<label for="contact-phone">Phone number:</label>
<input type="text" id="contact-phone">
</div><br>
<button type="submit" class="btn btn-default btn-info">Add band</button>
</form>
</div>
<form id="all-bands-form">
<div class="col-md-12" id="all-bands">
</div>
</form>
</div>
<div class="container">
<div id="Show-Input">
<h3>Show information:</h3>
<div class="row">
<div class="col-md-6">
<form id="show-info">
<div class="form-group">
<label for="show-date">Show date:</label>
<input type="date" id="show-date">
</div>
<div class="form-group">
<label for="bandListForShow">Bands to add:</label>
<ol>
<span id="bandListForShow"></span>
</ol>
</div>
<div class="form-group">
<label for="show-type">Which type of show is it?</label><br>
<input type="radio" name="show-type" id="show-type" value="Guarantee"> Guarantee<br>
<input type="radio" name="show-type" id="show-type" value="Split"> Door split<br>
</div>
<button type="submit" class="btn btn-default btn-info">Add show</button>
</div>
<div class="col-md-6">
<span id="all-shows"></span>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>