forked from fac-13/jikt-todo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>tdd todo</title>
<link rel="stylesheet" href="./styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A To-Do list web app" />
<meta name="keywords" content="To-do, organise, app, list" />
<meta name="author" content="Katia, Ivi, Tom, Jenath"/>
</head>
<body>
<div class="maincontainer">
<div class="formcontainer">
<form class="input-form" id="add-todo">
<span id="validateSpan"> Please fill in this field </span>
<input class="input-form__text" type="text" name="description" placeholder="Type tasks to do here" value="" autocomplete="off">
<input class="input-form__button" type="submit" value="Add">
<input class="input-form__button" id="button-descend" type="button" name="" value="Time">
<input class="input-form__button" id="button-az" type="button" name="" value="A-Z">
<input class="input-form__button" id="button-done" type="button" name="" value="Done">
</form>
</div>
<div class="container">
<div id = "todo-container">
</div>
</div>
</div>
</body>
<script type="text/javascript" src = "./logic.js"></script>
<script type="text/javascript" src = "./dom.js"></script>
</html>