-
Notifications
You must be signed in to change notification settings - Fork 0
/
options_page.html
54 lines (46 loc) · 1.76 KB
/
options_page.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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css" media="all"/>
</head>
<body>
<div class="container">
<div class="col-lg-6">
<p>
取得したトークンを設定してください。<br>
トークンは、<a href="https://codic.jp/my/api_status" target="_blank">codic APIステータス</a>より確認が可能です。
</p>
<div class="input-group">
<input type="text" id="token" class="form-control" placeholder="token">
<span class="input-group-btn">
<button id="save" class="btn btn-primary" type="button">Save</button>
</span>
</div><!-- /input-group -->
<hr>
<label>Theme</label>
<div class="input-group">
<div class="radio-inline">
<input type="radio" value="light" name="theme-select" id="light">
<label for="light">Light</label>
</div>
<div class="radio-inline">
<input type="radio" value="dark" name="theme-select" id="dark">
<label for="dark">Dark</label>
</div>
</div>
<div id="error" class="alert alert-danger" role="alert"></div>
<div id="message" class="alert alert-success" role="alert"></div>
<br>
<div>Icons made by <a href="http://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a
href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a
href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a>
</div>
</div><!-- /.col-lg-6 -->
</div>
<script src="js/lib/jquery.min.js"></script>
<script src="js/lib/bootstrap.min.js"></script>
<script src="js/common.js"></script>
<script src="js/options_page.js"></script>
</body>
</html>