-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathsettings.html
44 lines (39 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>Cloud Save Settings</title>
<style>
body {
font-family: sans-serif, helvetica, arial;
margin-right: 50px;
margin-left: 120px;
background: url(icon/64.png) no-repeat;
background-position: 30px 30px;
}
</style>
</head>
<body>
<h2 id="progress">Cloud Save Settings</h2>
<p>
Please excuse the fact that this settings page is mostly empty.
</p>
<p>
<input type="checkbox" id="moar" > <label for="moar">Enable Additional Hosts</label>
</p>
<p>
Local File Upload (Beta):
</p>
<p>
<select id="hostselect"></select>
<input type="file" id="file" multiple>
</p>
<hr>
<div style="font-size: small">
Part of the <a href="https://github.com/antimatter15/cloudsave">Cloud Save project</a>,
and check <a href="https://github.com/chaohuang/cloudsave">here</a> for the latest updates.
Authors: <a href="http://twitter.com/antimatter15">@antimatter15</a> and Chao.
Email comments and concerns to <a href="mailto:mister.huangchao@gmail.com">mister.huangchao@gmail.com</a>.
</div>
<script src="setting.js"></script>
</body>
</html>