-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
97 lines (79 loc) · 3.48 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
<!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>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>
<!-- ---navbar--- -->
<header>
<div class="nav container">
<!-- ---logo--- -->
<a href="index.html" class="logo"><i class='bx bx-home'></i>R State</a>
<!-- ---logo in button--- -->
<a href="login.html" class="btn">Log In</a>
</div>
</header>
<!-- ---Sign Up--- -->
<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>
<!-- ---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 you number" required>
<span>Enter your Password?</span>
<input type="password" name="" id="" placeholder="At least 8 characters" required>
<input type="submit" value="Sign Up" class="buttom">
<a href="login.html">Already have account</a>
</form>
<a href="sign-up.html" class="btn">Log In</a>
</div>
<!-- ---Log in image--- -->
<div class="login image">
<img src="images/sign up.png">
</div>
</div>
<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="#">Mogadishu</a>
<a href="#">Hargeisa</a>
<a href="#">Bosaso</a>
</div>
<div class="footer-box">
<h3>Contact</h3>
<a href="#">+252-616 258888</a>
<a href="#">yourmail@gmail.com</a>
<div class="socail">
<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>© Mohamed Aar All Right Reserved</p>
</div>
</body>
</html>