-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
113 lines (112 loc) · 5.23 KB
/
settings.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="./lib/materialize.min.css" media="screen,projection"/>
<link rel="stylesheet" href="./css/Common.css" />
<link rel="stylesheet" href="./css/Settings.css" />
<title>Ray - Settings</title>
</head>
<body id="Settings">
<div class="row">
<div class="col s12" id="Tabs">
<ul class="tabs">
<li class="tab col s3"><a href="#Tabs-1"></a></li>
<li class="tab col s3"><a href="#Tabs-2"></a></li>
<li class="tab col s3"><a href="#Tabs-3"></a></li>
</ul>
</div>
<div id="Tabs-1" class="col s12">
<fieldset id="MixerAccount">
<legend></legend>
<p id="UserName">
<input id="UserNameInput" type="text">
</p>
<p id="Password">
<input id="PasswordInput" type="password">
</p>
<p id="AutoConnect">
<input id="AutoConnectCheckbox" type="checkbox">
<label for="AutoConnectCheckbox"><label>
</p>
</fieldset>
<fieldset id="Whisper">
<legend></legend>
<p id="ShowWhisper">
<input id="ShowWhisperCheckbox" type="checkbox">
<label for="ShowWhisperCheckbox"><label>
</p>
<p id="CallWhisper">
<input id="CallWhisperCheckbox" type="checkbox">
<label for="CallWhisperCheckbox" class="checkbox"></label>
</p>
</fieldset>
<fieldset id="Language">
<legend></legend>
<div class="input-field col s6">
<select></select>
</div>
</fieldset>
</div>
<div id="Tabs-2" class="col s12">
<fieldset id="BouyomiChan">
<legend></legend>
<p id="CallBouyomiChan">
<input id="CallBouyomiChanCheckbox" type="checkbox">
<label for="CallBouyomiChanCheckbox"><label>
</p>
<p id="BouyomiChanLocation">
<div class="row">
<div class="file-field input-field col s2">
<div class="btn grey lighten-2 black-text">
<span id="BouyomiChanLocationFileText"></span>
<input id="BouyomiChanLocationFile" type="file" accept=".exe">
</div>
</div>
<div class="col s10">
<input id="BouyomiChanLocationInput" type="text" readonly placeholder="">
</div>
</div>
</p>
<fieldset id="CallUserNameRadio">
<legend></legend>
<p id="CallUserNameOff">
<input name="CallUserNameRadio" id="CallUserNameOffRadio" type="radio" value="0">
<label for="CallUserNameOffRadio"><label>
</p>
<p id="CallUserNameBefore">
<input name="CallUserNameRadio" id="CallUserNameBeforeRadio" type="radio" value="1">
<label for="CallUserNameBeforeRadio"><label>
</p>
<p id="CallUserNameAfter">
<input name="CallUserNameRadio" id="CallUserNameAfterRadio" type="radio" value="2">
<label for="CallUserNameAfterRadio"><label>
</p>
</fieldset>
</fieldset>
</div>
<div id="Tabs-3" class="col s12">
<fieldset id="Other">
<legend></legend>
<p id="MaxDisplayComment">
<span></span>
<span>
<input id="MaxDisplayCommentInput" type="number" min="0" max="999" maxlength="3">
</span>
<span></span>
</p>
<!--<p id="CheckUpdate">
<input id="CheckUpdateCheckbox" type="checkbox">
<label for="CheckUpdateCheckbox"></label>
</p>-->
</fieldset>
</div>
</div>
<div id="CloseButtons">
<button id="CancelButton" class="waves-effect waves-light btn grey lighten-2 black-text">Cancel</button>
<button id="OKButton" class="waves-effect waves-light btn grey lighten-2 black-text">OK</button>
</div>
<script src="./lib/jquery-3.2.1.min.js"></script>
<script src="./lib/materialize.min.js"></script>
</body>
</html>