-
Notifications
You must be signed in to change notification settings - Fork 2
/
demoAdd.html
72 lines (59 loc) · 2.56 KB
/
demoAdd.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>ToDo Demo</title>
<!-- Bootstrap -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<!--Navigation Bar-->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="demoIndex.html">Demo Organizer</a>
</div>
<div>
<ul class="nav navbar-nav">
<li><a href="demoIndex.html">All tasks</a></li>
<li class="active"><a href="demoAdd.html"><span class="glyphicon glyphicon-edit"></span> Add Todo</a></li>
<li><a href="demoImpressum.html">Impressum</a></li>
</ul>
</div>
</div>
</nav>
<!--Pageheader -->
<div class="container">
<div class="jumbotron">
<h1>Demo Organizer.</h1>
<p>Add a new todo task.</p>
</div>
</div>
<!--Add Form -->
<div class="container">
<form role="form">
<div class="form-group">
<label for="todo">What do you have to do?</label>
<input type="text" class="form-control" id="todo" maxlength="160">
</div>
<div class="form-group">
<label for="deadline">When is the deadline?</label></br>
<input type="date" name="deadline" id="deadline">
</div>
<div class="form-group">
<label for="progressbar">What is your current progress?</label>
<input oninput="x.value=parseInt(progressbar.value)" type="range" id="progressbar" value="0"><output name="x" for="progressbar">0</output>
</div>
<!--"Add task" button-->
<a href="demoIndex.html" role="button" class="btn btn-primary btn-block">Add task
<span class="glyphicon glyphicon-edit"></span></a>
</form>
</body>
</html>