-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistro.html
More file actions
37 lines (36 loc) · 1.23 KB
/
registro.html
File metadata and controls
37 lines (36 loc) · 1.23 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
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="./styles.css">
<!-- Title -->
<title>Iniciar Sesión</title>
</head>
<body>
<header class="header">
<img class="header__img" src="../assets/logo-platzi-video-BW2.png" alt="Platzi Video">
</header>
<section class="sinup">
<section class="sinup__container">
<h2>Regístrate</h2>
<form class="sinup__container--form">
<input class="input" type="text" placeholder="Correo">
<input class="input" type="email" placeholder="Correo">
<input class="input" type="password" placeholder="Contraseña">
<button class="button">Registrarme</button>
</form>
<p class="sinup__container--login"><a href="">Iniciar sesión</a></p>
</section>
</section>
<footer class="footer">
<a href="/">Términos de uso</a>
<a href="/">Declaración de privacidad</a>
<a href="/">Centro de ayuda</a>
</footer>
</body>
</html>