-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusuario-acceso.html
executable file
·33 lines (27 loc) · 1.21 KB
/
usuario-acceso.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>+ Móvil</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="css/style.css">
<script src="js/lib/jquery-2.2.0.min.js"></script>
<script src="js/lib/prefixfree.min.js"></script>
<script src="js/lib/formvalidator/jquery.form-validator.min.js"></script>
<script src="js/helpers.js"></script>
</head>
<body class="brand-color-bg">
<div class="access-form">
<img src="images/logotipo-masmovil-big.png" alt="Logotipo +móvil" class="logo">
<div class="form-title"><span>Iniciar sesión</span></div>
<form action="">
<label><input type="text" placeholder="Correo" data-validation="required email" autofocus><span class="icon icon-mail2"></span></label>
<label><input type="password" placeholder="Contraseña" data-validation="required"><span class="icon icon-lock"></span></label>
<button>Iniciar</button>
<a href="usuario-registro.html" class="link">¿No tienes cuenta? Crea una</a>
<a href="usuario-recuperar.html" class="link">Olvidé mi contraseña</a>
</form>
</div>
<script src="js/lib/formvalidator/config.js"></script>
</body>
</html>