-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
executable file
·60 lines (51 loc) · 3.13 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
<!doctype html>
<html lang="es">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Spartan:wght@300;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<title>Ingresar</title>
</head>
<body class="bg-white">
<section>
<div class="row g-0 d-flex flex-column align-items-center min-vh-100">
<div class="col-lg-5 d-flex flex-column align-items-center min-vh-100">
<div class="px-lg-5 pt-lg-4 pb-lg-3 p-4 w-100 ">
<center>
<img src="img/Gv.png" class="img-fluid" style="padding-top: 10px; padding-bottom: 10px; width: 70%; height: auto;">
</center>
</div>
<div class="f px-lg-5 py-lg-4 p-4 w-100 align-self-center">
<h1 class="font-weight-bold mb-4">Inicio de Sesión</h1>
<form action="login.php" method="POST"> <!--LINK A MENU INICIAL -->
<div class="mb-4">
<label for="usuario" class="form-label font-weight-bold">Usuario</label>
<input type="text" class="form-control" placeholder="Ingresa tu usuario" id="usuario" name="usuario" aria-describedby="emailHelp" required> <!--Se requiere que el campo sea llenado y que siga una expresión regular-->
</div>
<div class="mb-4">
<label for="contrasena" class="form-label font-weight-bold">Contraseña</label>
<input type="password" class="form-control" placeholder="Ingresa tu contraseña" id="contrasena" name="contrasena" required>
</div>
<button type="submit" class="btn btn-primary w-100"> Iniciar sesión </button>
<!--<a href="./menu/menuPrincipal.html" class="mb-4 btn btn-primary w-100 py-lg-3">Iniciar sesión</a>
Con este enlace no se puede hacer la validación
ESTA ES UNA PÁGINA PROVISIONAL PARA ENTREGAS
-->
</form>
</div>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js" integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.min.js" integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj" crossorigin="anonymous"></script>
-->
</body>
</html>