-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (66 loc) · 2.74 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en" dir="ltr">
<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">
<link rel="stylesheet" href="estilo.css">
<!-- Aqui va a ir la font Awasome -->
<link
rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous">
<title>Sliding Form</title>
</head>
<body>
<div class="container" id="container">
<div class="form-container sign-up-container">
<form action="#">
<div class="social-container">
<h1>Crear Cuenta</h1>
<a href="#" class="social"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social"><i class="fab fa-google-plus-g"></i></a>
<a href="#" class="social"><i class="fab fa-linkedin-in"></i></a>
</div>
<span>O usa tu email para registrarte</span>
<input type="text" name="Nombre" placeholder="Nombre">
<input type="email" name="email" placeholder="Email">
<input type="password" name="clave" placeholder="Clave">
<button type="button" name="button">Registrarme</button>
</form>
</div>
<div class="form-container sign-in-container">
<form action="#">
<div class="social-container">
<h1>Ingresar</h1>
<a href="#" class="social"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social"><i class="fab fa-google-plus-g"></i></a>
<a href="#" class="social"><i class="fab fa-linkedin-in"></i></a>
</div>
<span>O usa tu Cuenta</span>
<input type="email" name="email" placeholder="Email">
<input type="password" name="clave" placeholder="Clave">
<a href="#">¿Olvidaste tu Contraseña?</a>
<button type="button" name="button">Ingresar</button>
</form>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-left">
<h1>Bienvenido!</h1>
<p>
Para mantenerte conectado con tus informacion
</p>
<button class="ghost" id="signIn">Ingresar</button>
</div>
<div class="overlay-panel overlay-right">
<h1>Hola, Amigo!</h1>
<p> Empieza tu viaje con nosotros</p>
<button class="ghost" id="signUp">Registrarme</button>
</div>
</div>
</div>
</div>
</body>
<script src="main.js" charset="utf-8"></script>
</html>