-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
38 lines (35 loc) · 1.33 KB
/
home.html
File metadata and controls
38 lines (35 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/home.css">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; connect-src 'self' http://server:3000;">
<title>Drive</title>
</head>
<body>
<div>
<div id="homeMenu">
<div id="menuPages">
<button id="buttonDrive">
<img src="./images/server.png" id="logoButton" alt="" srcset="" height="30" width="30">
<h2 id="titleButton">Drive</h2>
</button>
<button id="buttonProfile">
<img src="./images/profile.png" id="logoButton" alt="" srcset="" height="30" width="30">
<h2 id="titleButton">Profile</h2>
</button>
<label for="diskSpace" id="labelDiskSpace">Disk space 70%</label>
<progress value="70" max="100" id="diskSpace"></progress>
</div>
<div id="divInput">
</div>
<div id="divFolders">
</div>
<div id="addFolder">
<button id="addFolderButton">+</button>
</div>
</div>
<script src="renderer/home.js"></script>
</body>
</html>