-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.html
123 lines (82 loc) · 3.69 KB
/
Main.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE HTML>
<html class="ui-mobile">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<script type="text/javascript" src="LoginFunctions.js"></script>
</head>
<body class="ui-mobile-viewport">
<!-- Start of first page -->
<div data-role="page" id="Main">
<!-- start header -->
<div data-role="header" data-nobackbtn="true">
<h1>Sistema de control</h1>
<a href="#login_ui" id="login_ui_btn" data-rel="dialog" class="ui-btn-right">Acceder</a>
<div data-role="navbar" data-iconpos="right">
<ul>
<li><a href="#help" id="help_ui_btn" data-transition="pop" data-icon="info" data-iconpos="right" data-theme="b">Ayuda</a></li>
</ul>
</div><!-- /navbar -->
</div>
<!-- /header -->
<div data-role="content">
<p style='text-align: center;'>
<br>
Bienvenido, deberá acceder para utilizar el sistema
<br>
<img src="Main.jpg" alt="main" />
</p>
</div><!-- /content -->
<div data-role="footer">
<h4>My Mobile App</h4>
</div><!-- /footer -->
</div><!-- /page -->
<!-- Start of LogIn page -->
<div data-role="page" id="login_ui" style='text-align: center;'>
<!-- start header -->
<div data-role="header">
<h1>Login</h1>
<a href="#Main" class="ui-btn-right">Cancel</a>
</div>
<!-- end header -->
<!-- content -->
<div data-role="content">
<p>Identifíquese para acceder </p>
<form method="post" id="loginform" action="#"> <!--<form method="post" id="loginform" action="javascript:alert('success!');">-->
<div class="ui-field-contain ui-body ui-br" data-role="fieldcontain">
<label for="login_userci" class="ui-input-text">Cédula de identidad:</label>
<input name="login_userci" class="text ui-input-text ui-body-null ui-corner-all ui-shadow-inset ui-body-c" id="login_userci" type="text" value="">
<label class="ui-input-text" for="login_userpass">Password:</label>
<input name="login_userpass" class="text ui-input-text ui-body-null ui-corner-all ui-shadow-inset ui-body-c" id="login_userpass" type="password" value="">
<input id="Login_userbttn" tabindex="-1" data-icon="check" class="button submit ui-btn" value="Login" type="submit" data-theme="b">
<p style='text-align: center;'><span id="res"></span></p>
</div>
</form>
</div>
<!-- /content -->
<div data-role="footer">
<h4>Acceso</h4>
</div><!-- /footer -->
</div><!-- /page -->
<!-- Start of help page: #popup -->
<div data-url="popup" data-role="page" id="help">
<div data-role="header" data-theme="e">
<h1>Ayuda del sistema</h1>
</div><!-- /header -->
<div data-role="content" data-theme="d">
<h2>Página de inicio</h2>
<p>Para acceder simplemente introduzca su Cédula de identidad y su contraseña. Si no las tiene, deberá registrarse con el administrador del sistema.</p>
<p><a href="#NewUsr" data-rel="back" data-role="button" data-inline="true" data-icon="back">Atrás</a></p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page popup -->
<div style="top: 273px;" class="ui-loader ui-body-a ui-corner-all"><span class="ui-icon ui-icon-loading spin"></span><h1>loading</h1></div>
</body>
</html>