-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
48 lines (45 loc) · 1.35 KB
/
signup.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
<!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>Create an account</h4></p>
<form action="" method="post">
<input type="text" placeholder="First Name">
<input type="text" placeholder="Last Name">
<div>
<input type="email" placeholder="Email">
<input type="text" placeholder="Username">
<input type="password" placeholder="Password">
<input type="password" placeholder="Repeat Password">
</div>
<button type="submit">Sing Up</button>
</form>
<p>Already have an account?</p>
<footer>
<div>
<a href="contacto.html">Contacto</a>
<a href="english.html">EN/ES</a>
</div>
</footer>
</body>
</html>