-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·87 lines (62 loc) · 2.81 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="generator" content="jqueryform.com">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Reporte Visita en Terreno APP</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/vendor.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script>
if(localStorage.getItem("identificado") == "true") {
window.location.href = "home.html";
}
</script>
</head>
<body>
<div class="container" style="margin-top:50px;">
<img src="img/logo.png" style="width:300px; max-width:100%; height: auto; margin:15px 0;" />
<form id="loginform" method='post'>
<h3 class="text-center">Ingresa tus datos para acceder</h3>
<div class="form-group">
<label class="sr-only">Usuario</label>
<div class="input-group input-append">
<span class="input-group-addon add-on"><i class="glyphicon glyphicon-user"></i> </span>
<input type="text" class="form-control input-lg" id="login_usuario" name="usuario" placeholder="Usuario" autofocus="" required="" />
</div>
</div>
<div class="form-group">
<label class="sr-only">Clave</label>
<div class="input-group input-append">
<span class="input-group-addon add-on"><i class="glyphicon glyphicon-asterisk"></i></span>
<input type="password" class="form-control input-lg" name="clave" placeholder="Clave" required="" />
</div>
</div>
<div class="form-group submit" style="text-align: center;">
<button id="btnlogin" type="submit" class="btn btn-primary btn-lg" style="z-index: 1;">
<span class="glyphicon glyphicon-log-in" aria-hidden="true"></span>
Ingresar
</button>
</div>
</form>
<div id="box-ok" class="alert alert-success" role="alert" style="display: none;"></div>
<div id="box-info" class="alert alert-info" role="alert" style="display: none;"></div>
<div id="box-error" class="alert alert-danger" role="alert" style="display: none;"></div>
<p class="copyright text-center">©2016 Ludique Comunicaciones Ltda.</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="cordova.js"></script>
<script src="js/vendor.js"></script>
<script src="js/qreport.js"></script>
<!-- <script src="http://192.168.0.12:8080/target/target-script-min.js#anonymous"></script> -->
<script>
if( localStorage.getItem("usuario") != '') {
$("#login_usuario").val(localStorage.getItem("usuario"));
}
</script>
</body>
</html>