aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.html
blob: 65d316ccd234f1d6fbcc2db5b72a59c78038d24f (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!--
   Copyright 2019 Igalia, S.L.

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->
<!doctype html>
<html lang="en">
    <head>
        <!-- Required meta tags -->
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    </head>
    <body>
        <div class="page" id="main">
            <h1 class="header">
                Settings
            </h1>
            <a href="#" class="entry" onclick="window.show('datetime');">
                <div class="icon">
                    <span class="icon-time"></span>
                </div>
                <div class="label">
                    Date & Time
                </div>
            </a>
            <a href="#" class="entry" onclick="window.show('bluetooth');">
                <div class="icon">
                    <span class="icon-bluetooth"></span>
                </div>
                <div class="label">
                    Bluetooth
                </div>
                <div class="control">
                    <span class="icon-toggle_on"></span>
                </div>
            </a>
            <a href="#" class="entry" onclick="window.show('wifi');">
                <div class="icon">
                    <span class="icon-wifi"></span>
                </div>
                <div class="label">
                    Wifi
                </div>
                <div class="control">
                    <span class="icon-toggle_off"></span>
                </div>
            </a>
            <a href="#" class="entry" onclick="window.show('wired');">
                <div class="icon">
                    <span class="icon-ethernet"></span>
                </div>
                <div class="label">
                    Wired
                </div>
            </a>
            <a href="#" class="entry" onclick="window.show('version');">
                <div class="icon">
                    <span class="icon-speed"></span>
                </div>
                <div class="label">
                    Version info
                </div>
            </a>
        </div>

        <div class="secondary page hide" id="datetime">
            <h1 class="header">
                Date & Time
            </h1>
            <div class="entry">
                <h2>
                    Date
                </h2>
            </div>
            <div class="entry">
                <h2>
                    Time
                </h2>
            </div>
            <a href="#" class="confirm button" onclick="window.hide('datetime')">
                Confirm
            </a>
        </div>

        <div class="secondary page hide" id="bluetooth">
            <h1 class="header">
                Bluetotth
            </h1>
            <a href="#" class="confirm button" onclick="window.hide('bluetooth')">
                Confirm
            </a>
        </div>

        <div class="secondary page hide" id="wifi">
            <h1 class="header">
                Wifi
            </h1>
            <a href="#" class="confirm button" onclick="window.hide('wifi')">
                Confirm
            </a>
        </div>

        <div class="secondary page hide" id="wired">
            <h1 class="header">
                Wired
            </h1>
            <a href="#" class="confirm button" onclick="window.hide('wired')">
                Confirm
            </a>
        </div>

        <div class="secondary page hide" id="version">
            <h1 class="header">
                Version info
            </h1>
            <a href="#" class="confirm button" onclick="window.hide('version')">
                Confirm
            </a>
        </div>

        <div class="log" id="log">

        </div>
    </body>
</html>