This repository has been archived by the owner on Apr 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (33 loc) · 1.42 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!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">
<script src="./main.js"></script>
<link rel="stylesheet" href="./css/main.css">
<title>Database</title>
<link rel="shortcut icon" type="x-icon" href="./images/icon.png">
</head>
<body>
<div class="getData tableBreak" id="StartMenu">
<input type="file" name="JFile" id="jFile" placeholder="JFile">
<label for="jFile" id="Label">Uplad Database</label>
<input type="button" value="New Database" id="NewJson">
<label for="NewJson" class="label50" id="NewDatabase">New Database</label>
<input type="button" value="Submit" id="submit" disabled>
<label for="submit" class="label50" id="submitbtn">Open Database</label>
</div>
<div class="tableControl tableBreak" id="tableControl">
<input type="button" value="Download" id="Download" onClick="Download()">
<input type="button" value="Reload" id="Reload">
<input type="button" value="New User" id="NewUser" onClick="newUser()">
</div>
<script>
window.onbeforeunload = function(e) {
return 'Are you sure you want to leave?';
};
</script>
<input type="button" value="Switch Themes" id="themeButton" onClick="ChangeTheme()" class="tableBreak">
</body>
</html>