-
Notifications
You must be signed in to change notification settings - Fork 0
/
registro.html
34 lines (34 loc) · 1.34 KB
/
registro.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>📽 PlatziVideo | Registro</title>
<link rel="stylesheet" href="css/registro.css">
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header class="header">
<img class="header__img" src="https://raw.githubusercontent.com/platzi/PlatziVideo/feature/react/src/assets/static/logo-platzi-video-BW2.png" alt="Platzi-Video">
</header>
<section class="register">
<section class="register__container">
<h2>Regístrate</h2>
<form class="register__container--form">
<input class="input" type="text" placeholder="Nombre">
<input class="input" type="text" placeholder="Correo">
<input class="input" type="password" placeholder="Contraseña">
<button class="button">Registrarme</button>
</form>
<section class="register__container--login">
<a href="">Iniciar sesión</a>
</section>
</section>
</section>
<footer class="footer">
<a href="/">Terminos de uso</a>
<a href="/">Declaración de privacidad</a>
<a href="/">Centro de ayuda</a>
</footer>
</body>
</html>