-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<script type="text/javascript" src="js/jquery-1.11.1.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<title>To-Do List</title>
</head>
<body>
<div class="container">
<h1>Create Your To-Do List!</h1>
<form>
<div class="form-group">
<label for="task-name">Enter the name of your task: </label>
<input id="task-name" type="text" class="form-control">
</div>
<div class="form-group">
<label for="person">Who needs to do this task? </label>
<input id="person" type="text" class="form-control">
</div>
<div class="form-group">
<label for="task-priority">Select the priority of your task: </label>
<select id="task-priority">
<option value="High">High</option>
<option value="Med" selected>Medium</option>
<option value="Low">Low</option>
</select>
</div>
<button type="submit" class="btn-success">Add Task</button>
</form>
<br>
<div id="todo">
<ul class="todo-list"></ul>
</div>
<div id="details">
<h5>Click on a task to see its details...</h5>
<br>
<p class="selectedTaskName"></p>
<p class="selectedTaskPerson"></p>
</div>
</div>
</body>
</html>