-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
74 lines (61 loc) · 2.51 KB
/
login.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
74
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viweport" content="width=device-width, user-scalable=no,
initial-scale= 1.0, maximum-scale=1.0, minimum-scale=1.0">
<title> Formulario Login</title>
<link rel="stylesheet" href="css/style-login.css">
</head>
<body>
<div class="bg-img">
<div class="title">
<h1 style="color: bisque;">Healthy Desserts</h1>
</div>
<div class=" content">
<header class="header"> Login Form </header>
<form action='#'>
<div class="field space">
<input id="usuario" type="text" name="Usuario" placeholder="Usuario">
</div>
<div class="field space">
<input id="contraseña" type="password" name="password" placeholder="Password">
</div>
<div class="button-login ">
<a href="desserts.html" style="text-decoration: none;color:bisque">LOGIN</a>
</div>
<p><a href="#" style="text-decoration: none;color:bisque ;font-size: 1.5rem;"> ¿Olvidaste tu contraseña? </a></p>
</form>
</div>
<div class=" register">
<header class="header"> Register Form </header>
<form action='#'>
<div class="field space">
<input id="name" type="text" name="Name" placeholder="Name">
</div>
<div class="field space">
<input id="lastName" type="text" name="Last Name" placeholder="Last Name">
</div>
<div class="field space">
<input id="email" type="text" name="Email" placeholder="Email">
</div>
<div class="field space">
<input id="password" type="password" name="password" placeholder="Password">
</div>
<div class="button-login ">
<input type="submit"><a href="login.html" style="text-decoration: none;color:bisque">SUBMIT</a>
</div>
</form>
</div>
</div>
<footer class="footer d-flex col-center">
<div>
Healthy Desserts
</div>
<div class="redes">
<img src="img/facebook.png" alt="facebook" />
<img src="img/youtube.png" alt="youtube" />
<img src="img/twiter.png" alt="twiter" />
<img src="img/instagram.png" alt="instagram" />
</div>
</footer>
</body>