-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrash.html
70 lines (57 loc) · 2.58 KB
/
trash.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
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<script src="./js/include_html.js"></script>
<script src="./js/script.js"></script>
<script src="./js/general-functions.js"></script>
<script src="./js/mini_backend.js"></script>
<script src="./js/backend.js"></script>
<script src="./js/trash.js"></script>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/menu.css">
<link rel="stylesheet" href="./css/trash.css">
<title>Trash</title>
<link rel="icon" href="./img/favicon.png" type="image/x-icon">
</head>
<body onload="includeHTML();renderTrash(true);">
<div w3-include-html="./html_templates/menu.html"></div>
<div class="wrapper py-5">
<div class="container-xxl px-4">
<h1>Trash</h1>
<p class="text-danger"><strong> Deleting tasks from this view is irrevocable!</strong></p>
<div class="container-xxl p-0 mt-5">
<!-- header only visible for wide screens (<990px) -->
<div id="trash-header" class="card trash-header fw-bold flex-row d-none d-lg-flex p-3 mb-1">
<div class="date d-flex align-items-end">
DELETE DATE
</div>
<div class="status d-flex align-items-end">
DELETED FROM
</div>
<div class="category d-flex align-items-end">
CATEGORY
</div>
<div class="title d-flex align-items-end">
TITLE
</div>
<div class="description d-flex align-items-end">
DESCRIPTION
</div>
<div class="assignedTo d-flex align-items-end">
ASSIGNED TO
</div>
</div>
<div id="trash-content" class="d-flex flex-row flex-lg-column flex-wrap justify-content-center gap-3">
</div>
</div>
</div>
</div>
</body>
</html>