-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathforgot-password.html
89 lines (73 loc) · 4.24 KB
/
forgot-password.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Facturador</title>
<!-- Prevent the demo from appearing in search engines -->
<meta name="robots" content="noindex" />
<!-- App CSS -->
<link type="text/css" href="./assets/css/app.css" rel="stylesheet" />
<link type="text/css" href="./assets/css/app.rtl.css" rel="stylesheet" />
<link type="text/css" href="./assets/css/sweetalert.css" rel="stylesheet" />
<!-- Simplebar -->
<link type="text/css" href="./assets/vendor/simplebar.css" rel="stylesheet" />
<!-- Import de Js -->
<script src="./assets/js/jquery-3.3.1.min.js"></script>
<script src="./assets/js/crLibreFront.js"></script>
<script src="./assets/js/crLibreApi.js"></script>
<script src="./assets/js/sweetalert.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body>
<div class="mdk-drawer-layout js-mdk-drawer-layout" data-fullbleed="" data-push="" data-has-scrolling-region="">
<div class="mdk-drawer-layout__content mdk-header-layout__content--scrollable" style="overflow-y: auto;" data-simplebar="" data-simplebar-force-enabled="true">
<div class="container h-vh d-flex justify-content-center align-items-center flex-column">
<div class="d-flex justify-content-center align-items-center mb-3">
<img src="" class="img-fluid" alt="Responsive image" id="siteIMG">
</div>
<div class="d-flex justify-content-center align-items-center mb-3">
<h2 class="ml-2 text-bg mb-0" ><strong id="siteTitle"></strong></h2>
</div>
<div class="w-100">
<div class="card card-forgot-password mx-auto">
<div class="card-body">
<div class="form-group">
<label>Email or userName</label>
<div class="input-group input-group--inline">
<div class="input-group-addon">
<i class="material-icons">account_circle</i>
</div>
<input type="text" class="form-control" id="userName" name="email" placeholder="Ingrese su correo o nombre de usuario" />
</div>
</div>
<div class="form-group">
<div class="input-group input-group--inline">
<div class="input-group-addon">
<i class="material-icons">work</i>
</div>
<input type="text" class="form-control" id="idMasterUser" name="idMasterUser" placeholder="ID de compañia" />
</div>
</div>
<div class="text-center">
<input type="button" onclick="crLibreApi_recover_user_pwd();" class="btn btn-primary" value="Recuperar"></input>
</div>
<div class="row">
<span class="psw"><a href="./user_login.html">atras..</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
(function () {
'use strict';
// Self Initialize DOM Factory Components
domFactory.handler.autoInit();
});
bootSettings();
</script>
</body>
</html>