summaryrefslogtreecommitdiff
path: root/index.html
blob: 6c35e917cbd5486f4197f737a358cb37c4f63c0f (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
<!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>
    </content>

    <script src="scripts/main.js"></script>
</body>
</html>