-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
40 lines (38 loc) · 1.36 KB
/
settings.html
File metadata and controls
40 lines (38 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<title>PhotoTime</title>
<script>
if (typeof app == 'undefined')
window.location="index.html";
</script>
</head>
<body>
<div data-role="page" id="settingsPage" data-position="fixed">
<script>
</script>
<div data-role="header">
<h1>Settings</h1>
</div><!-- /header -->
<div data-role="content" class="mylist draggable">
<ul class="overflowAuto" id="settingsServers" data-split-icon="gear" data-role="listview"></ul>
</div><!-- /content -->
<!-- new server popup-->
<div data-role="popup" data-inline="true" id="newServer" data-position-to="window" data-dismissible="true">
<label for="serverip">New Server</label>
<input type="text" name="serverip" id="serverip" value="" placeholder="IP Address"/>
<input type="number" name="serverport" id="serverport" value="" placeholder="port"/>
<div data-role="navbar">
<a href="#" data-role="button" data-rel="back" data-inline="true">cancel</a>
<a href="#" data-role="button" data-rel="back" data-inline="true" id="saveNewServer" >ok</a>
</div>
</div>
<div data-role="footer" data-position="fixed">
<div data-role="navbar" >
<a href="#newServer" data-role="button" data-rel="popup">Add Server</a>
<a href="index.html#splash" data-role="button" data-rel="back">Done</a>
</div>
</div>
</div>
</body>
</html>