-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlespass.html
40 lines (37 loc) · 1.25 KB
/
lespass.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>
<head>
<title>Lespass</title>
<meta charset="utf-8">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src="lespass.js"></script>
<link type="text/css" rel="stylesheet" href="/style.css" />
</head>
<body>
<div>
<button class="btn btn-outline-dark" id="back">Back</button>
<button class="btn btn-outline-dark" id="add-urls">Add URLs</button>
</div>
<h2 class="text-center">Add Tasks</h2>
<div class="d-flex justify-content-center">
<input type="text" id="taskname" placeholder="Task Name">
<input type="text" id="taskdesc" placeholder="Task Description">
<input type="datetime-local" min="" id="tasktime">
</div>
<br>
<div class="d-flex justify-content-center">
<button class="btn btn-primary" id="add">Add</button>
</div>
<br>
<h2 class="text-center">Tasks</h2>
<div class="container mt-3" style="width: 450px;">
<table class="table">
<tbody id="tasks">
</tbody>
</table>
</div>
<div class="d-flex justify-content-center">
<button class="btn btn-primary" id="done">Done</button>
</div>
</body>
</html>