-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewTodo.html
48 lines (38 loc) · 1.73 KB
/
newTodo.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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="links.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<body>
<h1> Create a new TODO </h1>
<div class="container">
<div class="col-sm-3"> <a href="index.html"> Overview </a> <br> </div>
<div class="col-sm-3"> <a href="newTodo.html"> Create a new TODO </a> <br> </div>
<div class="col-sm-3"> <a href="todo.html"> Edit TODO </a> <br> </div>
<div class="col-sm-3"> <a href="legalInformation.html"> Legal Information</a> </div>
</div>
<div class="container">
<form action="index.html" method="get" class="form-horizontal">
<div class="col-sm-6">
<label for="task" class="sr-only"></label>
<input type="text" id="task" maxlength="255" placeholder="Type in your task here!" class="form-control input-group col-sm-8">
</div>
<div class="col-sm-3">
<label for="datetime" class="sr-only"></label>
<input type="datetime-local" id="datetime" placeholder="datetime of expiration" class="form-control input-group col-sm-3">
</div>
<div class="col-sm-2">
<label for="progress" class="sr-only"></label>
<input type="range" id="progress" min="0" max="100" step="5" value="0" class="form-control input-group col-sm-3">
</div>
<div class="col-sm-1">
<button type="submit" class="btn btn-default input-group">Create</button>
</div>
</form>
</div>
</body>
</head>
</html>