-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.12 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>梦游の甘特图</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="passDialog">
<label for="passDialogFile">请上传密匙文件</label>
<input type="file" id="passDialogFile" accept=".key">
<button id="passDialogButton">提交</button>
</div>
<div id="sidebar">
<div id="sidebar-button-panel">
<button id='siderbar-button-hour' class="sidebar-button">小时</button>
<button id='siderbar-button-day' class="sidebar-button">天</button>
<button id='siderbar-button-month' class="sidebar-button">月</button>
</div>
</div>
<div id="ganttView">
<link rel="stylesheet" type="text/css" href="./node_modules/dhtmlx-gantt/codebase/dhtmlxgantt.css">
<div id="ganttHere" style="width:100%; height:100%;"></div>
</div>
<div id="footer">
<button id="addBtn">+</button>
</div>
</body>
<script src="./js/encryptScript.js"></script>
<script src="./js/ganttScript.js"></script>
</html>