-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbacklog.html
More file actions
65 lines (60 loc) · 2.72 KB
/
Copy pathbacklog.html
File metadata and controls
65 lines (60 loc) · 2.72 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="./favicon.png" type="image/png">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Backlog</title>
<!-- LOCAL JAVASCRIPT -->
<script src="./mini_backend.js"></script>
<script src="./process.js"></script>
<script src="addTask.js"></script>
<script src="avatar.js"></script>
<script src="backlog.js"></script>
<script src="log-in.js"></script>
<script src="includeHTML.js"></script>
<script src="./html templates/task.js"></script>
<!-- BOOTSTRAP -->
<!-- CSS ONLY -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap" rel="stylesheet">
<!-- LOCAL CSS -->
<link rel="stylesheet" href="kevinstyle.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style-johannes.css">
</head>
<body onload="includeHTML(), initBacklogProcess(); customizeApp()">
<div onclick="closeActionDialog()" class="actionDialog d-none" id="actionDialog">
<div class="dialogBox" id="dialogBox" onclick="event.stopPropagation()"></div>
</div>
<div id="successBacklog" class="alert alert-success successBacklog d-none" role="alert"></div>
<div class="navAndBody">
<div class="" w3-include-html="html templates/help.html"></div>
<div w3-include-html="html templates/navbar.html"></div>
<div class="contentContainerBacklog">
<div class="backlogTaskInfoCard d-none" id="backlogTaskInfoCard" onclick="closeTaskInfoCard()">
</div>
<div class="headContent">
<h1>Backlog</h1>
<p class="blue">Learning Management System Project</p>
</div>
<div class="infoBar d-none-mobile">
<h2>ASSIGNED TO</h2>
<h2>CATEGORY</h2>
<h2>DETAILS</h2>
</div>
<div class="bodyContent" id="taskContent">
</div>
</div>
</div>
</body>
</html>