-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 1.17 KB
/
index.html
File metadata and controls
29 lines (28 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login Proyecto CoderHouse</title>
<link rel="stylesheet" href="./css/estilosMain.css">
<link rel="stylesheet" href="./css/sweetalert2.min.css">
<script src="./js/jquery-3.1.1.min.js"></script>
<script src="./js/sweetAlert.js"></script>
<script defer src="./js/main.js"></script>
</head>
<body>
<div class="formContainer">
<div id="contenido">
<div id="formlogin"><img src="./img/logo.jpg" alt="Logo">
<BR><h2>Iniciar Sesión</h2>
<form class="formSubmit" action="#">
<input type="text" id="GetUsuario" placeholder="Usuario" required>
<input type="password" id="GetPass" placeholder="Contraseña" required>
<input type="submit" id="login" value="Iniciar Sesión" onclick="validacion()">
<div id="mensajeLogin"><BR></div>
</form>
<BR><BR><BR>No tienes Usuario? <button id="register" class="btnRegistro" onclick="mostrarRegistro()">Registro</button>
</div>
</div>
</div>
</body>
</html>