-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
executable file
·62 lines (39 loc) · 2.44 KB
/
home.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
<!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">
</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;" />
<p class="text-center" style="font-size:13px;">Bienvenido <span class="session_nombre" style="font-weight: bold;"></span>!</p>
<a class="btn btn-info btn-lg btn-block" href="formulario.html" role="button" style="margin-bottom:10px;"><i class="glyphicon glyphicon-list-alt"></i> Generar Reporte</a>
<a class="btn btn-info btn-lg btn-block disabled" href="#" role="button" style="margin-bottom:10px;"><i class="glyphicon glyphicon-facetime-video"></i> Videos de Ayuda</a>
<a class="btn btn-info btn-lg btn-block disabled" href="#" role="button" style="margin-bottom:10px;"><i class="glyphicon glyphicon-book"></i> Instrucciones</a>
<a class="btn btn-danger btn-lg btn-block" href="#" role="button" style="margin-bottom:10px;" id="btn_salir"><i class="glyphicon glyphicon-log-out"></i> Salir</a>
<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>
var nombre = localStorage.getItem("nombre");
nombre = nombre.substr(0,nombre.indexOf(' '));
$(".session_nombre").html(nombre);
</script>
</body>
</html>