-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.27 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.27 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Lespass</title>
<meta charset="utf-8">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src="index.js"></script>
<link type="text/css" rel="stylesheet" href="/style.css" />
</head>
<body>
<div class="container mt-3" style="width: 450px;">
<h2 class="text-center">Select Intensity</h2>
<table class="table table-borderless table-hover" id="intensities">
<tbody>
<tr id="basic">
<th scope="row">Basic</th>
<td>A simple task tracker where you check off tasks, similar to a to-do list</td>
</tr>
<tr id="bba">
<th scope="row">Basic But Annoying</th>
<td>Same as basic intensity, but sends notifications when deadline approaches. Can be very annoying...</td>
</tr>
<tr id="lespass">
<th scope="row">LESPASS</th>
<td>Only if you really want to work...</td>
</tr>
</tbody>
</table>
</div>
<div class="d-flex justify-content-center">
<button class="btn btn-primary" id="select">Select</button>
</div>
</body>
</html>