-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (65 loc) · 3.05 KB
/
Copy pathindex.html
File metadata and controls
71 lines (65 loc) · 3.05 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- CDNs ... -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<link rel="stylesheet" href="bt4/css/bootstrap.min.css">
<!-- Estilos Propios -->
<link rel="stylesheet" href="css/estiloLogin.css">
<title>Ingreso CuisineSoft</title>
</head>
<body>
<div class="" id="cuerpo">
<div class="container-fluid">
<div class="row no-gutter">
<div class="d-none d-md-flex col-md-4 col-lg-6 bg-image imagen"></div>
<div class="col-md-8 col-lg-6 elForm">
<div class="login d-flex align-items-center py-5">
<div class="container">
<div class="row">
<div class="col-md-9 col-lg-8 mx-auto">
<h3 class="login-heading mb-4">Bienvenido a CuisineSoft</h3>
<form>
<div class="form-label-group">
<input type="text" id="codigoUsuario" class="form-control" placeholder="Email address">
<label for="codigoUsuario">Codigo</label>
</div>
<div class="form-label-group">
<input type="password" id="contraseñaUsuario" class="form-control" placeholder="Password">
<label for="contraseñaUsuario">Contraseña</label>
</div>
<div class="custom-control custom-checkbox mb-3">
<input type="checkbox" class="custom-control-input" id="customCheck1">
<label class="custom-control-label" for="customCheck1">Recordarme</label>
</div>
<a href="./JefeCocina/index.html" id="loginJC"
class="btn btn-lg btn-outline-success btn-block btn-login text-uppercase font-weight-bold mb-2"
tabindex="-1" role="button" aria-disabled="true">Ingresar Jefe de Cocina</a>
<a href="./Admin/userRegister.html" id="loginA"
class="btn btn-lg btn-outline-success btn-block btn-login text-uppercase font-weight-bold mb-2"
tabindex="-1" role="button" aria-disabled="true">Ingresar Administrador</a>
<div class="text-center">
<a class="small text-danger" id="btnOlvide" href="#">Olvide la contraseña</a>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="./bt4/js/bootstrap.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<!-- Sweeralert -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@8"></script>
<!---->
<script src="./js/login.js"></script>
</body>
</html>