forked from antimatter15/cloudsave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
47 lines (41 loc) · 1.51 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
<!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>
<br />
Authors: <a href="http://twitter.com/antimatter15">@antimatter15</a><br />
Fix of the notification problem done by <a href="https://github.com/Mahnas92">@Mahnas92</a> 2014
<br />
Flattr Mahnas92 <script id='fb6yvsa'>(function(i){var f,s=document.getElementById(i);f=document.createElement('iframe');f.src='//api.flattr.com/button/view/?uid=Mahnas92&button=compact&url='+encodeURIComponent(document.URL);f.title='Support me for fixing the notification error in the cloud save project!';f.height=20;f.width=110;f.style.borderWidth=0;s.parentNode.insertBefore(f,s);})('fb6yvsa');</script>
</div>
<script src="setting.js"></script>
</body>
</html>