-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 2.08 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
<!-- Usaremos el index.html como login pues el 'index' carga mas rapido que las otras paginas -->
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inicio de Sesión</title>
<!-- Bootstrap CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/styleLogin.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!-- Asegúrate de agregar el id "loginForm" en el formulario -->
<form id="loginForm" action="../menu.html" autocomplete="on">
<!-- Seccion Titulo -->
<h1 class="title">Inicio de Sesion</h1>
<!-- Seccion User -->
<label>
<i class='fa-solid fa-user'></i>
<input placeholder="Usuario" type="text" id="username" required autocomplete="username">
</label>
<!-- Seccion Password -->
<label>
<i class='fa-solid fa-lock'></i>
<input placeholder="Contraseña" type="password" id="password" required autocomplete="current-password">
</label>
<button id="button">Entrar</button>
<div id="error-message" style="display: none; color: red; margin-top: 15px;">
Usuario o contraseña incorrectos. Por favor, intenta de nuevo.
</div>
</form>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Enlace al archivo JavaScript externo -->
<script src="js/main.js"></script>
</body>
</html>