This repository has been archived by the owner on Mar 26, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html~
74 lines (55 loc) · 1.93 KB
/
index.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
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
<!DOCTYPE HTML>
<html>
<head>
<title>E-Busker Artist</title>
<link rel="stylesheet" href="jquery/jquery.mobile-1.0.1.css" />
<script src="jquery/jquery-1.7.1.min.js"></script>
<script src="jquery/jquery.mobile-1.0.1.js"></script>
<script type="text/javascript" charset="utf-8" src="phonegap-1.4.1.js"></script>
<script type="text/javascript">
$( function() {
document.addEventListener("deviceready", onDeviceReady, false);
});
function onDeviceReady() {
// App.init();
}
</script>
<link rel="stylesheet" href="css/ebusker.css" />
<script src="js/ebusker.js"></script>
</head>
<body>
<div data-role="page" data-theme="a" id="home">
<div data-role="header" data-position="fixed">
<h1>E-Busker Artist</h1>
</div>
<div data-role="content" data-position="inline">
<div>Your total balance is <span id="total_balance">...</span>.</div>
<div id="notice">Waiting for change...</div>
</div>
<!--
<div data-role="footer" class="ui-bar" data-position="fixed">
<a href="#settings" data-role="button" data-icon="gear">Settings</a>
</div>
-->
</div>
<div data-role="page" data-theme="a" id="settings">
<div data-role="header" data-position="fixed">
<h1>E-Busker Artist Settings</h1>
</div>
<div data-role="content">
<div data-role="fieldcontain" class="ui-hide-label">
<label for="settings-username" class="ui-hidden-accessible">Username:</label>
<input type="text" name="username" id="settings-username" value="" placeholder="Username"/>
</div>
<div data-role="fieldcontain" class="ui-hide-label">
<label for="settings-password" class="ui-hidden-accessible">Password:</label>
<input type="password" name="username" id="settings-password" value="" placeholder="Password"/>
</div>
<div data-role="controlgroup" data-type="horizontal">
<a href="javascript: App.Settings.save();" data-role="button">Apply</a>
<a data-rel="back" data-role="button">Cancel</a>
</div>
</div>
</div>
</body>
</html>