-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
54 lines (38 loc) · 1.6 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
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="stylesignup.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>Sign Up</title>
<link rel="icon" href="img/icon.png">
<script src="./script.js" defer></script>
</head>
<body>
<header>
<div class="header">
<div class="logo"><a href="index.html"> <img src="img/logo-header.png"> </a> </div>
</header>
<main>
<div class="wrapper">
<h1 class="login_title">Sign Up</h1>
<section class="login">
<label class="login__label">
<span>email</span>
<input type="email" name="email" class="input">
</label>
<label class="login__label">
<span>nome de usuário</span>
<input type="text" name="username" class="input">
</label>
<label class="login__label">
<span>senha</span>
<input type="password" name="password" class="input">
</label>
<a href="#" class="button">Sign Up</a>
<p class="signin">Already have an account? <a href="signin.html" ><strong>Sign in.</strong></a></p>
</section>
</div>
</main>
</body>
</html>