forked from Mayuresh-22/Minglr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-us.php
92 lines (89 loc) · 3.94 KB
/
about-us.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
<?php
session_start();
?>
<html>
<title>Minglr - About Us</title>
<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">
<link rel="stylesheet" href="style/about.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<script src="https://kit.fontawesome.com/17a4e5185f.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fa-solid fa-bars" style="color: #12209d;"></i>
</label>
<label class="logo"><a href="/"><img class="logo" src="logo\logo.png"></a></label>
<ul class="menu-items">
<li class="menu-items-li"><a class="navv-item" href="feed.php">Feed</a></li>
<li class="menu-items-li">
<?php
if(isset($_SESSION['username'])){
echo '<a class="navv-item" href="account.php?username='.$_SESSION['username'].'" ">Account</a>';
}else{
echo '<a class="navv-item" href="account.php">Account</a>';
}
?>
</li>
<li class="menu-items-li">
<?php
if(!isset($_SESSION['username'])){
echo '<a class="navv-item" href="index.php">Login</a>';
}
else{
echo '<a class="navv-item" href="back/logout.php">Logout</a>';
}
?>
</li>
<li class="menu-items-li"><a class="navv-item active" href="about-us.php">About Us</a></li>
</ul>
</nav>
<!-- <div class="navbar">
<ul>
<li>
<img class="logo" src="logo\logo.png">
</li>
<li class="nav-item">
<a href="feed.php" style="text-decoration: none">Feed</a>
</li>
<li class="nav-item">
<a href="account.php" style="text-decoration: none">Account</a>
</li>
<li class="nav-item">
<a href="/" style="text-decoration: none;">Login</a>
</li>
</ul>
</div> -->
<div class="seperate_header"></div>
<div class="about-us">
<center><img class="about-us-logo" src="logo/cover.png" alt="logo"></center>
<h2>About Us</h2>
<p>Minglr is a social networking site where users can share their posts, images, and chat with each other. It was created to provide a seamless experience to people who want to connect with others and share their experiences.</p>
<p>We believe that social media can be used to bring people together and create positive changes in the world. Minglr is a platform that empowers people to express themselves and share their ideas with a wider audience.</p>
<p>Our team is committed to creating a safe and inclusive environment for all users. We take privacy and security seriously and have implemented measures to protect user data. Minglr is a place where everyone is welcome and encouraged to be themselves.</p>
<p>Thank you for being a part of our community. We look forward to seeing what you create and share on Minglr.</p>
</div>
<div class="footer">
<ul>
<li class="foot-item">
<a href="" class="foot-link" style="text-decoration: none">Home</a>
</li>
<li class="foot-item">
<a href="feed.php" class="foot-link" style="text-decoration: none">Feed</a>
</li>
<li class="foot-item">
<a href="account.php" class="foot-link" style="text-decoration: none">Account</a>
</li>
<li class="foot-item">
<a href="about-us.php" class="foot-link" style="text-decoration: none">About us</a>
</li>
<p>This website is only for educational purpose and does not try to replicate any institution/enity/company - by Mayuresh Choudhary</p>
</ul>
</div>
</body>
</html>