This repository was archived by the owner on May 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathoptions.html
More file actions
executable file
·162 lines (160 loc) · 8.82 KB
/
Copy pathoptions.html
File metadata and controls
executable file
·162 lines (160 loc) · 8.82 KB
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Settings page</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/options.css">
<link rel="stylesheet" type="text/css" href="css/ldcp.css"/>
<script type="text/javascript" src="js/ldcp.min.js"></script>
</head>
<body>
<div class="container">
<div class="blue-container">
<div class="row">
<div class="col-sm-12">
<img src="images/susi-logo.png" class="img-fluid logo">
<div class="heading">
<h3>Settings Page</h3>
<span>Your SUSI. Your way.</span>
</div>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-sm-12">
<div class="micAccess">
<div class="row">
<div class="col-sm-12 sub-heading">
<span class="glyphicon glyphicon-ice-lolly"></span>
<span> Microphone Access</span>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<span>Please Allow mic access</span>
</div>
<div class="save-btn">
<button class="btn btn-success" id="micAccess" style="margin-left: 60px;color: #fff;">Allow</button>
</div>
</div>
</div>
</div>
</div>
<div id="warning"></div>
<div class="row">
<div class="col-sm-12">
<div class="customBackground" id="customBackground">
<form id="backgroundChange">
<div class="row">
<div class="col-sm-12 sub-heading">
<span class="glyphicon glyphicon-picture"></span>
<span> Background Settings</span>
</div>
</div>
<div class="row">
<div class="col-sm-10">
<span>Enter the url to add Custom Background</span>
</div>
<div class="col-sm-7 ">
<input type="text" class="form-control" placeholder="Background URL" id="backUrl">
</div>
<div class="save-btn">
<button type="submit" class="btn btn-success" style="color: #fff;">Submit</button>
</div>
<div class="col-sm-7" style="text-align:center"><strong>OR</strong></div>
<div class="col-sm-7">
<span>Upload Local Image</span>
</div>
<div class="col-sm-7">
<input id="localupload" type="file" placeholder="Background URL" id="backUrl" accept="image/*">
</div>
</div>
</form>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="row">
<div class="col-sm-12 sub-heading">
<span class="glyphicon glyphicon-tint"></span>
<span>Predefined Themes</span>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="themeSelectors" id="preDefThemes">
<input type="button" id="black" class="btn theme button_clicked" style="background-color: black;">
<input type="button" id="deeppink" class="btn theme button_clicked" style="background-color: deeppink;">
<input type="button" id="chartreuse" class="btn theme button_clicked" style="background-color: chartreuse;">
<input type="button" id="brown" class="btn theme button_clicked" style="background-color: brown;">
<div class="theme-picker-container">
<p style="margin: 10px 0px 0px;">Color picker</p>
<button id="btn-color-theme" class="btn theme button_clicked"></button>
<input type="input" id="inputbox" data-toggle="colorpicker" class="color-picker">
</div>
</div>
</div>
<div class="save-btn">
<button type="submit" id="submit-themecolor" class="btn btn-success" style="margin-left:58px;color: #fff; float: left;">Submit</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="row">
<div class="col-sm-12 sub-heading">
<span class="glyphicon glyphicon-tint"></span>
<span>Message Pane Colour</span>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="themeSelectors" id="msgPaneThemes">
<input type="button" id="black" class="btn theme message_pane_button_clicked" style="background-color: black;">
<input type="button" id="deeppink" class="btn theme message_pane_button_clicked" style="background-color: deeppink;">
<input type="button" id="chartreuse" class="btn theme message_pane_button_clicked" style="background-color: chartreuse;">
<input type="button" id="brown" class="btn theme message_pane_button_clicked" style="background-color: brown;">
</div>
</div>
<div class="save-btn">
<button type="submit" id="submit-panecolor" class="btn btn-success" style="margin-left: 58px;color: #fff; float: left;">Submit</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="row">
<div class="col-sm-12 sub-heading">
<span class="glyphicon glyphicon-volume-up"></span>
<span>Susi's Voice</span>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="btn-group" style = "color: #0084ff;" id="getVoice">
<button type="button" id= "5" class="btn btn-primary">Male</button>
<button type="button" id= "4" class="btn btn-primary">Female</button>
</div>
</div>
<div class="save-btn">
<button type="submit" id="submit-susivoice" class="btn btn-success" style="margin-left: 58px;color: #fff; float: left;">Submit</button>
</div>
</div>
</div>
</div>
<div style="text-align: center;">
<button class="btn btn-danger" id="restore">Restore Defaults</button>
</div>
</div>
</div>
<script src="js/options.js"></script>
<script src="jquery/jquery-3.2.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>