-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.html
178 lines (162 loc) · 5.64 KB
/
setup.html
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>kit - 初期設定</title>
<script src="./system/jquery.min.js"></script>
<link rel="stylesheet" href="./system/jquery-ui-1.12.1/jquery-ui.min.css">
<script src="./system/jquery-ui-1.12.1/jquery-ui.min.js"></script>
<link href="./fa/css/all.css" rel="stylesheet">
<link href="./system/noto.css" rel="stylesheet">
<link href="./system/kitstrap/kitstrap.css" rel="stylesheet">
<style type="text/css">
*::selection {
background: rgba(0, 0, 0, .0);
}
body {
font-family: 'Noto Sans JP', sans-serif;
background: #000000;
color: #ffffff;
font-size: 20px;
text-shadow: 0px 2px 8px black;
line-height: 2;
}
#kit-wallpaper {
position: fixed;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
background: url("./system/wallpaper/11.jpg");
background-size: cover;
transform: scale(1.25);
filter: blur(10px);
}
section {
position: fixed;
padding: 20px;
box-sizing: border-box;
width: 100%;
text-align: center;
}
h3 {
font-size: 36px;
font-weight: 100;
}
input {
box-sizing: border-box;
border: 2px solid white;
font-size: 20px;
padding: 7px;
background: rgba(0, 0, 0, .3);
color: #ffffff;
border-radius: 10px;
font-family: 'Noto Sans JP', sans-serif;
box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, .3);
max-width: 100%;
outline: none;
}
input::selection {
background: #f0f0f0;
color: #303030;
}
</style>
<script type="text/javascript">
$(document).ready(Load);
function Load() {
$("section").hide();
$("#1").show("drop", 500);
$("#config-username").val(localStorage.getItem("kit-username"))
$("#config-usercolor").val(localStorage.getItem("kit-user-color"))
$("#config-password").val(localStorage.getItem("kit-password"))
}
function page(str) {
$("section").fadeOut(500);
$("#" + str).show("drop", 500);
if (str == "e") {
$("#view-username").text($("#config-username").val());
$("#view-usercolor").text($("#config-usercolor").val());
if ($("#config-password").val().length > 0) {
$("#view-password").text("パスワードを設定します");
}
else $("#view-password").text("設定しません");
}
}
function end() {
localStorage.setItem("kit-username", $("#config-username").val());
localStorage.setItem("kit-user-color", $("#config-usercolor").val());
localStorage.setItem("kit-password", $("#config-password").val());
localStorage.setItem("kit-setup-flag", true);
location.href = "index.html";
}
function skip() {
$('section').text('今回以降、初期設定の画面は表示されません。');
setTimeout(function () {
$('section').text('kitを起動します。お待ち下さい');
localStorage.setItem("kit-setup-flag", true);
setTimeout(function () { location.href = "index.html"; }, 1000);
}, 1000);
}
</script>
</head>
<body>
<div id="kit-wallpaper"></div>
<section id="1">
<h3><span class="fa fa-cogs"></span> kitの初期設定</h3>
<p>kitを選んでいただきありがとうございます</p>
<p>初期設定を行います</p>
<a class="kit-button -xlarge" onclick="page('2')">次へ</a>
<p class="kit-font-s m-t-xl">
今は初期設定をスキップして<br>
あとから「設定」アプリで設定を行うこともできます。
</p>
<li>
<a href="./index.html" class="kit-hl-alt">初期設定をスキップ</a>
</li>
<li>
<a onclick="skip()" class="kit-hl-alt">以降表示しない</a>
</li>
</section>
<section id="2">
<h3><span class="fa fa-user"></span> ユーザー名</h3>
<p>ユーザーを識別する名前として表示されます</p>
<input type="text" name="" id="config-username">
<p>
<a class="kit-button -silver" onclick="page('1')">前へ</a>
<a class="kit-button" onclick="page('3')">次へ</a>
</p>
</section>
<section id="3">
<h3><span class="fa fa-palette"></span> ユーザーカラー</h3>
<p>ユーザーが持つ色です。ロック画面などで表示されます</p>
<input type="text" name="" id="config-usercolor">
<p>
<a class="kit-button -silver" onclick="page('2')">前へ</a>
<a class="kit-button" onclick="page('4')">次へ</a>
</p>
</section>
<section id="4">
<h3><span class="fa fa-key"></span> パスワード</h3>
<p>ロックされた状態からログインするときに必要です。</p>
<p>空欄にするとパスワードを設定しません</p>
<input type="password" name="" id="config-password">
<p>
<a class="kit-button -silver" onclick="page('3')">前へ</a>
<a class="kit-button" onclick="page('e')">次へ</a>
</p>
</section>
<section id="e">
<h3><span class="fa fa-toolbox"></span> 初期設定は終わりです</h3>
<p>以下の設定内容でよろしければ、下のボタンを押してkitの使用を開始します。</p>
<p>
<span class="fa fa-user"></span>ユーザー名:<span id="view-username"></span><br>
<span class="fa fa-palette"></span>ユーザーカラー:<span id="view-usercolor"></span><br>
<span class="fa fa-key"></span>パスワード:<span id="view-password"></span>
</p>
<p>
<a class="kit-button -silver" onclick="page('4')">前へ</a>
<a class="kit-button" onclick="end()">初期設定を完了</a>
</p>
</section>
</body>
</html>