-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomm.php
95 lines (84 loc) · 3.64 KB
/
homm.php
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
<!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">
<link rel="stylesheet" href="style/style.css">
<title>Home</title>
</head>
<body>
<?php
include 'nav.php';
?>
<?php
$id = $_SESSION['id'];
$query = mysqli_query($con, "SELECT*FROM users WHERE Id=$id");
while ($result = mysqli_fetch_assoc($query)) {
$res_Uname = $result['Username'];
$res_Email = $result['Email'];
$res_Phone = $result['Phone'];
$res_id = $result['Id'];
}
echo "<a href='edit.php?Id=$res_id'>Profile</a>";
?>
<div class="page-1">
<!-- <h1>Lost & Found</h1><br> -->
<h4>Your Trusted Lost and Found Solution</h4>
</div>
<!-- <img src="lostcover.jpg" alt="lost" style="display: flex; width:100%; height:30%;"> -->
<div class="mian">
<div class="intro">
<!-- <h1>Lost & Found</h1><br>
<h4>Your Trusted Lost and Found Solution</h4> -->
<br><br>
<p>
The Lost and Found Website provides a solution by creating a
centralized platform where users can report lost items and others can
search for and return them.
</p>
<p>
Our platform is designed to streamline the lost and found process, providing a user-friendly interface that allows individuals to report lost items with detailed descriptions and information. Likewise, those who have found items can use our platform to search for potential matches and connect with the rightful owners. Through our innovative approach, we're transforming the way lost items are reported, searched for, and reunited with their owners.
</p><br><br>
<p>
At the heart of The Lost and Found Website is a commitment to community support and engagement. We believe that by coming together as a collective, we can increase the chances of recovering lost items and bring peace of mind to those who have experienced loss. Whether you're a forgetful individual in need of assistance or a conscientious finder looking to help others, our platform provides a space where everyone can play a part in the lost and found process.
</p>
</div>
<div class="lost">
<img class="lost" src="L& F.png" />
</div>
</div>
<br><br><br><br><br>
<div id="about">
<h1>About Us</h1>
<p>
Your go-to platform for managing lost items efficiently and reuniting
them with their rightful owners. Our mission is to provide a
user-friendly interface where individuals can report lost items, search
for found items, and connect with others to facilitate the return
process.
</p>
<br />
<p>
At Lost and Found Portal, we understand the frustration and
inconvenience that comes with losing valuable belongings. That's why
we've created a centralized hub where users can report lost items with
detailed descriptions, including location, date, and any identifying
features. Our advanced search functionality enables users to browse
through found items and filter results based on various criteria.
</p>
<br />
<p>
We believe in the power of community and collaboration when it comes to
reuniting lost items with their owners. Our platform encourages users to
communicate and coordinate efforts to ensure a successful return.
Whether it's a lost wallet, a misplaced phone, or a cherished keepsake,
Lost and Found Portal is here to help.
</p>
<br /><br />
</div>
<?php
include 'footer.php';
?>
</body>
</html>