-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (82 loc) · 3.62 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html>
<head>
<title>Edlara</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="charset" content='UTF-8'/>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="lib/jquery-mobile/jquery.mobile-1.3.2.min.css"/>
<link rel="stylesheet" type="text/css" href="lib/jquery-mobile/jquery.mobile.structure-1.3.2.min.css"/>
<link rel="stylesheet" href="lib/system/css/style.css">
<link rel="stylesheet" type="text/css" href="lib/jquery-mobile/jquery.mobile.theme-1.3.2.min.css"/>
<script type="text/javascript" src="lib/jquery/jquery-1.9.0.min.js"></script>
<script type="text/javascript" src="lib/jquery-mobile/jquery.mobile-1.3.2.min.js"></script>
</head>
<body id="body">
<div data-role="page" id="index">
<div data-role="header">
<h1>EdLara</h1>
</div><!-- /header -->
<div data-role="content">
<ul id="mainpagelist" data-role="listview" data-inset="true" data-theme="d" data-divider-theme="e" data-count-theme="b">
<li>
<a id="tutorial_a" href="#tutorials_start" data-theme="e" data-transition="flow"> Tutorials
<span id="tutorialcount" class="ui-li-count">12</span>
</a>
</li>
<li>
<a id="exam_a" href="#exams">Exams
<span id="examcount" class="ui-li-count" data-transition="flow">0</span>
</a>
</li>
<li id="loginbtn">
<a id="login_a" href="#login">Login
</a>
</li>
</ul>
</div>
<!-- /content -->
</div>
<!-- Start of second page -->
<div data-role="page" id="tutorials_start">
<div data-role="header">
<h1>Tutorials</h1>
</div><!-- /header -->
<div data-role="content">
<ul id="tutorial_list" data-role="listview" data-inset="true" data-theme="b" data-divider-theme="e" data-count-theme="b">
</ul>
<a href="#index" data-role="button" data-theme="d" data-inline="true" data-mini="true" data-icon="back" data-transition="flow">Back</a>
<a class="tutorials_nextpage" href="#" data-role="button" data-theme="d" data-inline="true" data-mini="true" data-icon="forward" data-transition="flow">Next</a>
<input type="hidden" name="tutorial_page" id="tutorial_page" value="1" placeholder="">
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="exams">
<div data-role="header">
<h1>Exams</h1>
</div><!-- /header -->
<div data-role="content">
<ul id="exam_list" data-role="listview" data-inset="true" data-theme="b" data-divider-theme="e" data-count-theme="b">
</ul>
<a href="#index" data-role="button" data-theme="d" data-inline="true" data-mini="true" data-icon="back" data-transition="flow">Back</a>
</div><!-- /content -->
</div><!-- /page -->
<div data-role="page" id="login">
<div data-role="header">
<h1>Login</h1>
</div><!-- /header -->
<form id="loginform" method="post">
<div class="textinput" data-role="fieldcontain">
<label for="username">Username</label>
<input type="text" data-clear-btn="true" name="username" data-mini="true" id="username" value="">
</div>
<div class="textinput" data-role="fieldcontain">
<label for="password">Password</label>
<input type="password" data-clear-btn="true" name="password" data-mini="true" id="password" value="" autocomplete="off">
</div>
<a href="#index" data-role="button" data-theme="d" data-inline="true" data-mini="true" data-icon="back" data-transition="flow">Back</a>
<input type="submit" data-role="button" data-theme="b" data-inline="true" data-mini="true" data-icon="arrow-r" data-iconpos="right" data-transition="flow" value="Login">
</form>
</div>
<script type="text/javascript" src="lib/system/js/script.js"></script>
</body>
</html>