-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
32 lines (29 loc) · 1.32 KB
/
Copy pathsettings.html
File metadata and controls
32 lines (29 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Shoumi - Settings</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/settings.css"/>
</head>
<body>
<div id="container">
<div id="top">
<p><span><strong>Settings are currently disabled due to performance issues hehehe</strong></span></p>
<p><span id="info">Not pressing "save settings" will result in the settings only being used for this session. If settings are saved, they will be used every time you use the program, until you change them.</span></p>
</div>
<div id="body">
<input type="checkbox" class="setting" id="autoShare"/><label for="autoshare">Share images instantly as they are loaded to the client (if connected to a user).</label></li>
</div>
<div id="bottom">
<button type="button" id="save">Save settings</button>
</div>
</div>
</body>
<script type=text/javascript src="js/index.js"></script>
<script type="text/javascript" src="https://shoumiserver.herokuapp.com/socket.io/socket.io.js"></script>
<script>
require('./js/renderer.js');
</script>
</html>