forked from ppierzchalka/TODO-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (58 loc) · 2.72 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vanilla JS TODO app</title>
<meta name="description" content="Vanilla js todo app">
<link rel="stylesheet" href="normalize.css">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src = "http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1 class="header-title">TODO App</h1>
</div>
</div>
</div>
</header>
<main>
<div class="container" id="main">
<div class="row">
<div class="col-sm-12 form-container">
<form class="todo-form" id="form" onsubmit="event.preventDefault(); TodoApp.handleData()">
<div class="input-group mb-3">
<div class="input-group-prepend todo-name todo">
<span class="input-group-text" id="enter-todo">Enter Your TODO (Required)</span>
</div>
<input id="todo-name" class="form-control todo-name todo" type="text" name="todo-name" value="" aria-label="enter-todo" aria-describedby="enter-todo" required>
</div>
<div class="input-group mb-3">
<div class="input-group-prepend todo-date todo">
<span class="input-group-text" id="date-todo">Enter deadline for Your TODO (Optional)</span>
</div>
<input id="todo-date" class="form-control todo-date todo" type="date" name="todo-date" value="" aria-label="date-todo" aria-describedby="enter-todo">
</div>
<button type="submit" name="button" class="btn btn-primary btn-submit">Submit</button>
</form>
</div>
</div>
<div id="list">
</div>
</div>
</main>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="HTMLTodoRenderer.js"></script>
<script src="TodoApp.js"></script>
<script src="TodoItem.js"></script>
<script src="TodoItemCollection.js"></script>
<script src="script.js"></script>
</body>
</html>