-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
60 lines (58 loc) · 2.32 KB
/
index.php
File metadata and controls
60 lines (58 loc) · 2.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Real Estate Portal</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css">
</head>
<body>
<div class="hero-section">
<div class="hero-content">
<h1>Welcome to Real Estate Portal</h1>
<p class="hero-subtitle">Your Gateway to Professional Property Management</p>
<div class="hero-buttons">
<a href="login.php" class="btn btn-primary">Login</a>
<a href="signup.php" class="btn btn-secondary">Sign Up</a>
</div>
</div>
</div>
<div class="container">
<section class="features">
<div class="feature-card">
<i class="bi bi-building"></i>
<h3>For Real Estate Office</h3>
<p>Get easy access to sales reports for each agent, keep track of properties and sales. </p>
</div>
<div class="feature-card">
<i class="bi bi-person-badge"></i>
<h3>For Agents</h3>
<p>Manage your properties efficiently and grow your real estate business with our comprehensive tools.</p>
</div>
</section>
</div>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>Contact Us</h4>
<p><i class="bi bi-envelope"></i> info@realestateportal.com</p>
<p><i class="bi bi-telephone"></i> +91xxxxxxxxxx</p>
</div>
<div class="footer-section">
<h4>Follow Us</h4>
<div class="social-links">
<a href="#"><i class="bi bi-facebook"></i></a>
<a href="#"><i class="bi bi-twitter"></i></a>
<a href="#"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Real Estate Portal. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>