File size: 1,551 Bytes
bdc406c
 
 
 
 
 
 
 
 
 
 
ec33ac6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bdc406c
 
ec33ac6
 
 
 
 
 
bdc406c
 
ec33ac6
bdc406c
 
 
 
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
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Reachy Mini Status</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <div class="flex-row justify-center align-center" style="margin-top: 32px;">
        <h3>Start Reachy Mini daemon before testing connections!</h3>
        <div class="flex-col-2">
            <div class="container">
                <h1>Reachy Mini HTTP</h1>
                <div class="status" id="connection-status">
                    <span class="dot disconnected" id="status-dot-http"></span>
                    <span id="status-text-http">Disconnected</span>
                </div>
            </div>

            <div class="container">
                <h1>Reachy Mini WS</h1>
                <div class="status" id="connection-status-ws">
                    <span class="dot disconnected" id="status-dot-ws"></span>
                    <span id="status-text-ws">Disconnected</span>
                </div>
            </div>
        </div>

        <div class="container align-center">
            <form id="ip-form">
                <label for="ip-input">Reachy IP:</label>
                <input type="text" id="ip-input" name="ip" placeholder="localhost" style="margin-left: 8px;">
                <button type="submit" onclick="event.preventDefault(); tryConnect();">Connect</button>
            </form>
        </div>
    </div>

    <script src="reachy-client.js"></script>
</body>

</html>