-
Notifications
You must be signed in to change notification settings - Fork 0
/
additem.html
83 lines (78 loc) · 2.35 KB
/
additem.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
<!DOCTYPE html>
<!--
Ryan Wahle
VFW 1302
Project 4
-->
<html>
<head>
<title>TV Show Reminder</title>
<meta charset="UTF-8" />
<meta name="keywords" content="TV, Tracker, Reminder" />
<meta name="description" content="Add TV Show Reminder" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="robots" content="noindex, nofollow" />
<link href="http://fonts.googleapis.com/css?family=Ubuntu:bold" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Vollkorn" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header>
<h1>TV Show Reminder</h1>
</header>
<section id="mainSection">
<form action="#" method="post" id="addTVShowForm">
<fieldset>
<legend id="actionDescription">Add TV Show</legend>
<input type="hidden" id="action" value="addTVShow" />
<ul id="formErrors">
</ul>
<p>
<label for="showName">Show Name: </label>
<input type="text" id="showName" placeholder="Name of the TV Show" required />
</p>
<p id="dayOfWeekSelection">
<label for="dayOfWeek">Day of Week: </label>
</p>
<p>
<label for="time">Time: </label>
<input type="time" id="time" required />
</p>
<p>
<label for="favorite">
Favorite? <input type="checkbox" id="favorite" />
</label>
</p>
<p>
<label for="rating">Rating: </label>
<input type="range" id="rating" min="1" max="5" />
</p>
<p>
<label for="startingDate">Starting Date: </label>
<input type="date" id="startingDate" required />
</p>
<p>
<label for="description">Description: </label>
<textarea id="description" rows="5" placeholder="Enter a description of the show" required></textarea>
</p>
<p id="submitButtonContainer">
<input type="button" id="addTVShowButton" value="Add" />
</p>
</fieldset>
</form>
</section>
<footer>
<p>
<a href="#" id="clearStoredDataLink">Clear Stored Data</a>
</p>
<p>
<a href="#" id="displayDataLink">Display Data</a>
</p>
<p>
<a href="additem.html" id="addTVShowLink">Go Back</a>
</p>
</footer>
<script type="text/javascript" src="js/json.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>