blob: 9a2fd051b6c1497f6d09629ebc24bcc87b49c1ee (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenSmarts</title>
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/widgets.css" />
</head>
<body>
<user>
<a href="?page=user">
<img id="profile" src="assets/profile.png" />
</a>
</user>
<nav>
<a class="nav-el" href="?page=dashboard">Dashboard</a>
<a class="nav-el" href="?page=manage">Manage Devices</a>
<a class="nav-el" href="?page=alerts">Alerts</a>
<a class="nav-el" href="?page=settings">Settings</a>
<a class="nav-el" href="?page=automation">Home Automation</a>
</nav>
<content>
<span class="widget button" style="--top-color: blue; --side-color:red;">Lamp 1</span>
<div class="widget button toggle">Lamp 1</div>
<div class="widget slider" style="--fill-percent: 0.3;"></div>
<div class="widget button checkbox"></div>
<div class="widget color-wheel" style="--pos-x: 0.3; --pos-y: 0.3;"></div>
<div class="widget color-temp" style="--pos: 0.3;"></div>
<div class="widget color-light" style="--pos: 0.3;"></div>
</content>
<script type="module" src="scripts/main.js"></script>
</body>
</html>
|