summaryrefslogtreecommitdiff
path: root/web-flasher/index.html
blob: 26d7510bf26c2409fc334ab64188006a66b08ea1 (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
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>ORION-RF Installer</title>

    <script
        type="module"
        src="https://unpkg.com/esp-web-tools@10/dist/web/install-button.js">
    </script>

    <style>
        body {
            font-family: sans-serif;
            max-width: 700px;
            margin: auto;
            padding: 2rem;
        }

        h1 {
            text-align: center;
        }

        .card {
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 10px;
        }
    </style>
</head>
<body>

<h1>ORION-RF Installer</h1>

<div class="card">
    <h2>Stable Release</h2>

    <p>
        Connect your ESP32-S3 and click Install.
    </p>

    <esp-web-install-button manifest="manifest.json">
    </esp-web-install-button>
</div>

</body>
</html>