-
Notifications
You must be signed in to change notification settings - Fork 0
/
song-form.html
93 lines (59 loc) · 2.41 KB
/
song-form.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
<!doctype html>
<html>
<head>
<head>
<title>Music History Project</title>
<link rel="stylesheet" href="/lib/bower_components/bootstrap/dist/css/bootstrap.min.css">
<link href='http://fonts.googleapis.com/css?family=Oswald:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<nav class="navbar navbar-default">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Brand</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar-collapse-1">
<ul class="nav navbar-nav">
<li role="presentation"><a href="index.html" >View Music</a></li>
<li role="presentation"><a href="song-form.html" class="selected">Add Music</a></li>
<li role="presentation"><a href="#">Profile</a></li>
</ul>
</div>
</nav>
</div>
<div class="row">
<div class="addNew col-sm-12">
<form action="GET">
<h3>Add New Songs to the Library</h3>
<!-- //title -->
<label for="song_title">Song Title</label>
<input id="song_title" type="text" name="song_name" placeholder="Song Title" />
<!-- //artist -->
<label for="artist">Artist</label>
<input id="artist" type="text" name="artist" placeholder="Artist" />
<!-- //album -->
<label for="album">Album</label>
<input id="album" type="text" name="album" placeholder="Album" />
<!-- //genre -->
<label for="genre">Genre</label>
<input id="genre" type="text" name="genre" placeholder="Genre" />
<button id='add-song'>Add Song</button>
</form>
</div>
</div>
<footer>
<p></p>
<footer>
<script data-main="javascripts/entry" src="./lib/bower_components/requirejs/require.js"></script>
</body>
</html>