forked from Va16hav07/Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
99 lines (98 loc) · 4.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up - PropHub</title>
<link rel="stylesheet" href="signup.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<nav class="navbar">
<div class="logo">PropHub</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="properties.html">Properties</a>
<a href="sell.html">Sell/Rent Property</a>
<div class="auth-buttons">
<a href="signin.html" class="btn-signin">Sign In</a>
<a href="signup.html" class="btn-signup">Sign Up</a>
</div>
</div>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
<div class="auth-container">
<form class="auth-form" id="signupForm">
<div class="auth-header">
<i class="fas fa-user-plus"></i>
<h2>Create Account</h2>
<p>Join our community of property owners and seekers</p>
</div>
<div class="form-group">
<label for="fullname"><i class="fas fa-user"></i> Full Name</label>
<input type="text" id="fullname" placeholder="Enter your full name" required>
</div>
<div class="form-group">
<label for="email"><i class="fas fa-envelope"></i> Email</label>
<input type="email" id="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="phone"><i class="fas fa-phone"></i> Phone Number</label>
<input type="tel" id="phone" placeholder="Enter your phone number" required>
</div>
<div class="form-group">
<label for="userType"><i class="fas fa-users"></i> I am a</label>
<select id="userType" required>
<option value="">Select user type</option>
<option value="buyer">Property Buyer</option>
<option value="seller">Property Seller</option>
<option value="agent">Real Estate Agent</option>
<option value="both">Both Buyer and Seller</option>
</select>
</div>
<div class="form-group">
<label for="password"><i class="fas fa-lock"></i> Password</label>
<input type="password" id="password" placeholder="Create a strong password" required>
<div class="password-strength" id="passwordStrength"></div>
</div>
<div class="form-group">
<label for="confirm-password"><i class="fas fa-lock"></i> Confirm Password</label>
<input type="password" id="confirm-password" placeholder="Confirm your password" required>
</div>
<div class="form-group terms">
<input type="checkbox" id="terms" required>
<label for="terms">I agree to the Terms of Service and Privacy Policy</label>
</div>
<button type="submit" class="btn-primary">Create Account</button>
<p class="auth-redirect">Already have an account? <a href="signin.html">Sign In</a></p>
</form>
</div>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>PropHub</h3>
<p>Your trusted partner in real estate</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<a href="#">About Us</a>
<a href="#">Contact</a>
<a href="#">Terms of Service</a>
</div>
<div class="footer-section">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Phone: (555) 123-4567</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 PropHub. All rights reserved.</p>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>