aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/index.html
blob: 68b622f2694b50bbd33e72b9749a17c0242d0171 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<html>

<head>
    <title>
        XDS Server
    </title>
    <link rel="icon" type="image/x-icon" href="assets/favicon.ico">
    <link rel="stylesheet" href="font-awesome.min.css">

    <style>
        body.page-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            height: 100%;
            width: auto;
            text-align: center;
            background: url("assets/images/background_iot_bzh_light.png") 0 0 no-repeat;
            background-color: lightgrey;
            background-size: cover;
            background-position: center;
            color: #FFFFFF;
        }

        img {
            width: 15em;
        }

        li {
            list-style: none;
            font-size: x-large;
            padding-bottom: 10px;
        }

        a {
            color: royalblue;
        }

        i.fa {
            font-size: smaller;
        }

        #dashbButton {
            font-size: large;
            font-weight: bold;
            background: none;
            color: royalblue;
        }
    </style>
</head>

<body class="page-content">

    <img id="logo-iot" src="assets/images/iot-bzh-logo-small.png">

    <h1 id="title">X(cross) Development System</h1>

    <h2>Please start XDS agent on your machine
        <br> and
        <br> connect to XDS Dashboard
    </h2>

    <button id="dashbButton">
        Try to connect to dashboard
        <br> http://localhost:8800
    </button>
    <script type="text/javascript">
        document.getElementById("dashbButton").onclick = function () {
            location.href = "http://localhost:8800";
        };
    </script>
    <i style="font:xx-small;">(URL may depend on your configuration)</i>

    <br>
    <br>
    <br>

    <h2>For more information, please refer to XDS User's Guide:</h2>
    <ul>
        <li>
            <a href="http://docs.automotivelinux.org/docs/devguides/en/dev/reference/xds/part-1/1_install-client.html">
                Install instructions
                <i class="fa fa-external-link" aria-hidden="true"></i>
            </a>
        </li>
        <li>
            <a href="http://docs.automotivelinux.org/docs/devguides/en/dev/#xcross-development-system-user's-guide">
                Online User's guide
                <i class="fa fa-external-link" aria-hidden="true"></i>
            </a>
        </li>
        <li>
            <a href="http://iot.bzh/download/public/XDS/docs/XDS_UsersGuide.pdf">
                User's guide (PDF file)
                <i class="fa fa-external-link" aria-hidden="true"></i>
            </a>
        </li>
    </ul>
</body>

</html>