-
Notifications
You must be signed in to change notification settings - Fork 0
/
signin.html
44 lines (41 loc) · 1.13 KB
/
signin.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>moviOn</title>
<link rel="shortcut icon" href="">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- HEADER -->
<div>
<div>
<h1 id="logo">moviOn</h1>
</div>
<nav>
<a href="index.html">Home</a>
<a href="search.html">Search</a>
<a href="blog.html">Blog</a>
<a href="signin.html">Sign in</a>
<a href="signup.html" class="highlight">Sign up</a>
<a href="ligth.html">🌝</a>
</nav>
</div>
<p><h4>Login in to my account</h4></p>
<form action="" method="post">
<div>
<input type="email" placeholder="Email">
<input type="password" placeholder="Password">
</div>
<button type="submit">Sing In</button>
</form>
<p>Forgot password?</p>
<footer>
<div>
<a href="contacto.html">Contacto</a>
<a href="english.html">EN/ES</a>
</div>
</footer>
</body>
</html>