-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
60 lines (47 loc) · 1.49 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
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- Stylesheets -->
<link rel="stylesheet" href="./node_modules/xel/themes/material.css">
<link rel="stylesheet" href="./src/css/style.css">
<title>ISP Smoothie</title>
</head>
<body class='window'>
<div id="title-bar"></div>
<div class="header">
<h1>Smoothie<span style="font-size: 14px; color:lightsalmon;">(alpha)</span></h1>
</div>
<x-box vertical class='items'>
<x-card id="main-card">
<header>
<h3 style="text-align: left;">Blender</h3>
<x-label style="padding-right: 5px";><strong id='label-enable-service'>off</strong></x-label>
<x-switch id="enable-service" onchange="mainToggle" skin="big"></x-switch>
</header>
<main id='networks'>
</main>
</x-card>
</x-box>
<dialog id='update-dialog'>
<main>
<h4>Update Available!</h4>
<p>Install now?</p>
</main>
<footer>
<x-button id="disagree-update-button">
<x-label>Disagree</x-label>
</x-button>
<x-button toggled id="agree-update-button">
<x-label>Agree</x-label>
</x-button>
</footer>
</dialog>
<!-- JS -->
<script src="./node_modules/xel/xel.min.js"></script>
<script>
require('./src/js/title-bar.js')
require('./src/js/ui-controller.js')
</script>
</body>
</html>