-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
103 lines (100 loc) · 2.92 KB
/
sign-up.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sign Up</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css"
/>
</head>
<body>
<header>
<div class="nav container">
<a href="index.html" class="logo">
<i class="bx bx-home"></i>R State
</a>
<a href="login.html" class="btn">Log In</a>
</div>
</header>
<div class="login container">
<div class="login-container">
<h2>Welcome , Let's get started</h2>
<p>Already have account <a href="login.html">Log In</a></p>
<p>
Log in with your data that you entered <br />during your registration
</p>
<!---Login Form--->
<form action="">
<span>Full Name</span>
<input type="text" name="" id="" placeholder="Your Name" required />
<span>Enter your email address</span>
<input
type="email"
name=""
id=""
placeholder="yourmail@gmail.com"
required
/>
<span>Phone</span>
<input
type="tel"
name=""
id=""
placeholder="Enter your number"
required
/>
<span>Enter your password</span>
<input
type="password"
name=""
id=""
placeholder="At least 8"
required
/>
<input type="submit" value="Sign Up" class="button" />
<a href="login.html">Already have an account?</a>
</form>
<a href="login.html" class="btn">Log In</a>
</div>
<!--Log In Image--->
<div class="login-image">
<img src="img/signup.jpg" alt="" />
</div>
</div>
<!----Footer---->
<section class="footer">
<div class="footer-container container">
<h2>R. State</h2>
<div class="footer-box">
<h3>Quick Links</h3>
<a href="#">Agency</a>
<a href="#">Building</a>
<a href="#">Rates</a>
</div>
<div class="footer-box">
<h3>Locations</h3>
<a href="#">Birmingham</a>
<a href="#">London</a>
<a href="#">New York</a>
</div>
<div class="footer-box">
<h3>Contact</h3>
<a href="#">+44 (0)800 123 4567</a>
<a href="#">yourmail@gmail.com</a>
<div class="social">
<a href="#"><i class="bx bxl-facebook"></i></a>
<a href="#"><i class="bx bxl-twitter"></i></a>
<a href="#"><i class="bx bxl-instagram"></i></a>
</div>
</div>
</div>
</section>
<!----copyright---->
<div class="copyright">
<p>© BD All Right Reserved</p>
</div>
</body>
</html>