blob: b2a6736e941a4a8ad7c7180613b81bf168769715 (
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
|
<html>
<head>
<title>Setup AIRMX device</title>
<script defer src="main.mjs"></script>
</head>
<body>
<p id="unsupported-message" style="display: none;">
Your browser does not support the Web Bluetooth API. Please switch to Google Chrome and try again.
</p>
<main>
<h1>Setup AIRMX Pro</h1>
<div>
<input type="text" id="ssid" placeholder="SSID" />
</div>
<div>
<input type="password" id="password" placeholder="Password" />
</div>
<div>
<button id="connect" type="button" onclick="connect()">
Connect
</button>
</div>
</main>
</body>
</html>
|