-
Notifications
You must be signed in to change notification settings - Fork 46
/
addsite.html
51 lines (43 loc) · 1.95 KB
/
addsite.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>umm: Unofficial Moodle Mobile App</title>
<link rel="stylesheet" href="lib/jquery.mobile.1.0rc2.css" />
<link rel="stylesheet" href="lib/umoodle.css" />
<script type="text/javascript" charset="utf-8" src="lib/phonegap.1.2.0.js"></script>
<script src="lib/jquery.js"></script>
<script src="lib/xml2json.js"></script>
<script src="lib/md5.js"></script>
<script src="lib/common.js"></script>
<script src="lib/jquery.mobile.1.0rc2.js"></script>
</head>
<body>
<div data-role="page" id="page-addsite">
<div data-role="header" data-position="fixed">
<a href="index.html" id="bcancel" data-role="button" data-icon="delete" data-iconpos="notext"></a>
<h1><span data-lang="addasite">Add a site</span></h1>
<a id="bsave" data-icon="check" data-role="button" data-iconpos="notext"></a>
</div><!-- /header -->
<div data-role="content">
<h1>moodle</h1>
<div class="whiteroundtable">
<div data-role="fieldcontain">
<label for="isiteurl"><span data-lang="siteurl">Site URL</span></label>
<input type="url" name="siteurl" id="isiteurl" value="http://" />
</div>
<div data-role="fieldcontain">
<label for="iusername"><span data-lang="username">Username</span></label>
<input type="text" name="username" id="iusername" value="" />
</div>
<div data-role="fieldcontain">
<label for="ipassword"><span data-lang="password">Password</span></label>
<input type="password" name="password" id="ipassword" value="" />
</div>
</div>
</div><!-- /content -->
<script type="text/javascript" src="lib/pages/addsite.js"></script>
</div><!-- /page -->
</body>
</html>