-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (37 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="../7-redSocial/css/estilo.css">
<link rel="shortcut icon" href="../7-redSocial/images/logo.png">
<title>Sociality</title>
</head>
<body>
<header>
<div id="logo">
<div class="headerFormularios">
<img src="../7-redSocial/images/logo.png" alt="logo">
<h1>BIENVENIDO A SOCIALITY</h1>
</div>
</div>
</header><br><br>
<video src="../7-redSocial/video/fondo_web.mp4" autoplay="true" muted="true" loop="true"></video>
<section id="formularioInicio">
<h2>Inicio de sesión</h2>
<form name="contacto" action="../7-redSocial/php/iniciarSesion.php" method="post">
<input type="text" name="nickname" placeholder="Ingrese su usuario" required><br>
<img src="../7-redSocial/images/ojo_cerrado.png" alt="logo ojo" id="ojo">
<input type="password" name="contraseña" autocomplete="off" placeholder="Ingrese su contraseña" id="contraseña" required><br><br>
<hr>
<input type="submit" name="enviar" class="boton" value="Iniciar Sesión"><br><br>
<label> ¿No posee cuenta? <a href="../7-redSocial/registro.html" class="linkInicio"> Regístrese aquí </a></label><br><br>
</form>
</section><br><br><br>
<footer>
<p>Copyright © 2022 - Sociality</p>
</footer>
<script src="../7-redSocial/js/password.js"></script>
</body>
</html>