forked from aitoss/Web_Extension-todo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
40 lines (34 loc) · 1001 Bytes
/
welcome.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="bootstrap.min.css" rel="stylesheet">
<style>
.main-div{
min-width: 800px;
}
</style>
</head>
<body>
<div class="main-div">
<div class="container" style="margin-top:40px;">
<form class="form-group">
<div class="list-group">
<li class="list-group-item list-group-item-primary list-group-item-active">
<h4 style="font-family: Verdana, Geneva, Tahoma, sans-serif;" class="text-center">Add work to your
list -</h4>
<button class="btn btn-primary" type="button">Work left to do<span id="tr" class="badge"
style="font-size:20px;"></span></button>
</li><br>
<div><br></div>
<input class="form-control" placeholder="Type text here" id="task" onclick="IsEmpty();"><div><br></div>
<div id="todos"></div><hr>
<div id='add'>
<button class="btn btn-primary" disabled="disabled" style="width:100%;" id="add">Add</button>
</div>
</div>
</form>
</div>
</div>
<script src="todo.js"></script>
</body>
</html>