summaryrefslogtreecommitdiff
path: root/webcards/index.html
blob: c322ec1545885958412efe3155ea3d9d80008176 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE HTML>

<html>
    <head>
        <meta name="viewport" content="width=device-width,initial-scale=1">
        <meta charset="utf-8">

        <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
        <link rel="stylesheet" type="text/css" href="styles/icofont.css">

        <link rel="icon" sizes="32x32" href="images/wc-icon-32.png">
        <link rel="icon" sizes="48x48" href="images/wc-icon-48.png">
        <link rel="icon" sizes="96x96" href="images/wc-icon-96.png">
        <link rel="icon" sizes="144x144" href="images/wc-icon-144.png">
        <link rel="icon" sizes="288x288" href="images/wc-icon-288.png">

        <link rel="stylesheet" type="text/css" href="styles/home/base.css">
        <link rel="stylesheet" type="text/css" href="styles/home/desktop.css">
        <link rel="stylesheet" type="text/css" href="styles/home/mobile.css">

        <link rel="stylesheet" type="text/css" href="styles/input.css">

        <title>WebCards</title>
    </head>

    <body>
        <div class="content">
            <p style="font-size: 30px; font-weight: normal;">Web<span style="color: #0084ff; font-weight: bold;">Cards</span></p>
            <div>
                <select id="type">
                    <option value="ws://" selected>ws</option>
                    <option value="wss://">wss</option>
                </select>

                <input id="addr" type="text" value="127.0.0.1">

                <input id="port" type="number" value="4040">
            </div>

            <button id="conn" onclick="connect()">Connect</a>
        </div>

        <script>
            var t = document.getElementById("type");
            var a = document.getElementById("addr");
            var p = document.getElementById("port");
            var c = document.getElementById("conn");

            t.onchange = updateLink;
            a.onchange = updateLink;
            p.onchange = updateLink;

            function connect() {
                var url = "./client.html?s=" + t.value + a.value + ":" + p.value + "&g=-1";
                //c.setAttribute("href", url);
                window.location = url;
            }
        </script>
    </body>
</html>