-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.06 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
<html>
<head>
<title>Karaoke Master</title>
<style type = "text/css">
h1{color: #2565AE}
body {
background-color: #ADD8E6;
color: #000000;
font-size: 20px;
text-align: center;
}
</style>
</style>
</head>
<body>
<h1>Karaokemaster</h1>
<a href = "https://comp20final.herokuapp.com/favorites">Favorites</a><br><br>
Please enter a song name<br><br>
<form name='info' method='post' action='https://comp20final.herokuapp.com/lyrics' onSubmit="return validate()">
Song Name: <input type="text" name='song' id='song'/><br><br>
<input type = "submit" src="a1.png" />
</form>
<script language="javascript">
window.onload = function () {
search = document.getElementById("song");
}
function validate() {
if (search.value == "") {
alert("Must enter a song name");
return false;
}
return true;
}
</script>
</body>
</html>