-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainWindow.html
More file actions
56 lines (44 loc) · 1.35 KB
/
mainWindow.html
File metadata and controls
56 lines (44 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<title>Countdown Timer v0.0.1</title>
<link rel="stylesheet" href="./src/css/materialize.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
main();
});
function ovrSettings() {
$('#root').load("src/html/ovrSettings.html");
}
function main() {
$('#root').load("src/html/default.html");
}
function accSettings() {
$('#root').load("src/html/accSettings.html");
}
</script>
</head>
<body>
<div>
<nav>
<div class="nav-wrapper purple">
<a class="brand-logo center black-text">Countdown Timer</a>
</div>
</nav>
<nav>
<div class="nav-bar">
<ul class="tabs z-depth-1">
<li id="tab1" class="tab s3" onclick="ovrSettings()"><a>Overlay Settings</a></li>
<li id="tab2" class="tab s3 z-depth-2" onclick="main()"><a class="">00:00:00</a></li>
<li id="tab3" class="tab s3" onclick="accSettings()"><a>Account Settings</a></li>
</ul>
</div>
</nav>
</div>
</body>
<body>
<div id="root">
</div>
</body>
</html>