-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
59 lines (53 loc) · 2.23 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
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AdoPet - Sign Up</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/login-signup.css">
</head>
<body>
<header>
<img src="assets/img/pawns.svg" alt="Three pawns" class="corner-img">
<nav>
<li>
<a href="home.html" role="button">
<img src="assets/img/home.svg" alt="Home" class="header__icon">
</a>
</li>
<li>
<a href="message.html" role="button">
<img src="assets/img/message.svg" alt="Messages" class="header__icon">
</a>
</li>
</nav>
</header>
<main class="login-singup_page">
<h1 class="logo">
<img src="assets/img/logo-blue.svg" alt="AdoPet">
</h1>
<p class="contrast-text">Don't have a registration yet?</p>
<p class="contrast-text">So, before looking for your best friend, we need some data:</p>
<form class="form-one">
<label for="email-singup" class="form-one__label">Email</label>
<input type="email" id="email-login" placeholder="Enter your email" class="form-one__input">
<label for="name-singup" class="form-one__label">Name</label>
<input type="email" id="name-singup" placeholder="Enter your full name" class="form-one__input">
<label for="password-singup" class="form-one__label">Password</label>
<input type="password" id="password-singup" placeholder="Choose a password" class="form-one__input">
<label for="password-singup" class="form-one__label">Confirm Password</label>
<input type="password" id="password-singup" placeholder="Confirm your password" class="form-one__input">
<a href="profile.html" class="btn">Sing up</a>
</form>
</main>
<footer>
<p>
2022 - Made by
<a href="https://cinthiafontoura.com/" class="footer__link">Cinhia Fontoura</a>
</p>
</footer>
<script src="https://kit.fontawesome.com/ca208bcf52.js" crossorigin="anonymous"></script>
</body>
</html>