-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddtask.html
More file actions
42 lines (36 loc) · 1.69 KB
/
Copy pathaddtask.html
File metadata and controls
42 lines (36 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./img/logo/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/font.css">
<link rel="stylesheet" href="./css/addtask.css">
<link rel="stylesheet" href="./css/media_queries.css">
<script src="./js/main.js"></script>
<script src="./js/remotestorage.js"></script>
<script src="./js/tasktemplate.js"></script>
<script src="./js/addtask.js"></script>
<script src="./js/dropdown.js"></script>
<title>Join - Board</title>
</head>
<body onload="initAddtaskSite()" class="custom-scrollbar">
<div onclick="closeHeaderMenu()" w3-include-html="./templates/sidebar.html"></div>
<div onclick="closeHeaderMenu()" class="header-main-container">
<header w3-include-html="./templates/header.html"></header>
<div class="addtask_maindiv">
<div w3-include-html="./templates/addtask-template.html"></div>
</div>
</div>
<!-- preload images to prevent flickering -->
<div style="display: none;">
<img src="./img/icons/add-task/cancel-high.svg" height="0" width="0">
<img src="./img/icons/add-task/cancel-activ.svg" height="0" width="0">
<img src="./img/icons/add-task/cf-checked-white.svg" height="0" width="0">
<img src="./img/icons/add-task/Prio-urgent-white.svg" height="0" width="0">
<img src="./img/icons/add-task/Prio-medium-white.svg" height="0" width="0">
<img src="./img/icons/add-task/Prio-low-white.svg" height="0" width="0">
</div>
</body>
</html>