Intern/rentermenu.php
2024-09-13 17:42:15 +08:00

170 lines
6.4 KiB
PHP

<?php
session_start();
if (!isset($_SESSION['AccID'])) {
header('Location: login.html');
exit();
}
include("connection.php");
$AccID = $_SESSION['AccID'];
// Fetching the user's name
$sql = "SELECT Renter_Name FROM renter WHERE Renter_ID = '$AccID'";
$result = mysqli_query($conn, $sql);
$user = mysqli_fetch_assoc($result);
$userName = $user['Renter_Name'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Renter | UITM BAZAAR</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style2.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<aside class="sidebar">
<div class="logo">
<img src="pic/profiles.png" alt="logo">
<h2><?php echo $userName; ?>'s</h2>
</div>
<ul class="links">
<h4>Main Menu</h4>
<li>
<span class="material-symbols-outlined"><img src="pic/home.png"></span>
<a href="rentermenu.php">Main Menu</a>
</li>
<hr>
<h4>Advanced</h4>
<li>
<span class="material-symbols-outlined"><img src="pic/receipt.png"></span>
<a href="selectReceipt.php">Receipt</a>
</li>
<hr>
<h4>Account</h4>
<li>
<span class="material-symbols-outlined"><img src="pic/profile2.png"></span>
<a href="renterProfile.php">Profile</a>
</li>
<hr>
<h4>Sign Out</h4>
<li class="logout-link">
<span class="material-symbols-outlined"><i class="fa-solid fa-right-from-bracket"></i></span>
<a href="logout.php">Logout</a>
</li>
</ul>
</aside>
<header class="header">
<a href="rentermenu.php" class="logo">Welcome <span><?php echo $userName; ?>'s</span></a>
<i class="fa-solid fa-bars" id="menu-icon"></i>
<nav class="navbar">
<a href="rentPlace.php">Rent Place</a>
<a href="sawEvents.php">Event</a>
<a href="payment.php">Payment</a>
<a href="sentFeedback.php">Sent Feedback</a>
</nav>
</header>
<div class="slider-wrapper">
<div class="slider">
<div class="nav-arrow left" onclick="scrollToSection(-1)"><i class="fa fa-arrow-left" aria-hidden="true"></i></div>
<div class="nav-arrow right" onclick="scrollToSection(1)"><i class="fa fa-arrow-right" aria-hidden="true"></i></div>
<section class="home" id="home">
<div class="home-content">
<br><br><br><br>
<h1>Renter's Site <span>Page</span></h1>
<p>Hi, Welcome to our UiTM Rent Night Market Website. We offer a comprehensive market rent system designed to streamline your rental needs. Whether you're looking to rent a place, manage your profile, or send feedback, we have got you covered.</p>
<br><br>
<a onclick="scrollToFooter()" class="btn">MORE
<i class="fa-solid fa-briefcase"></i>
</a>
</div>
<br><br>
<div class="home-img">
<img src="pic/uitm.png" alt="UITM">
</div>
</section>
<section class="services" id="services">
<div class="service-container">
<div class="boxes">
<div class="card">
<a href="rentPlace.php"><img src="pic/rent.png" alt=></a>
<h2>Rent Place</h2>
</div>
<div class="card">
<a href="sawEvents.php"><img src="pic/event.png" ></a>
<h2>Event</h2>
</div>
<div class="card">
<a href="payment.php"><img src="pic/payment.jpg" ></a>
<h2>Payment</h2>
</div>
<div class="card">
<a href="sentFeedback.php"><img src="pic/feedback.jpg" ></a>
<h2>Feedback</h2>
</div>
<div class="card">
<a href="renterProfile.php"><img src="pic/profile.jpg" ></a>
<h2>Profile</h2>
</div>
</div>
</div>
</section>
</div>
</div>
<footer class="footer" id="footer">
<div class="social">
<a onclick="showPopup()"><i class="fa-solid fa-phone"></i></a>
<a onclick="showPopup2()"><i class="fa-solid fa-envelope"></i></a>
</div>
<div id="popup" class="popup">
<h2>This is Our No Phone!</h2><br>
<p>016-430 6562</p>
<button class = btns onclick="closePopup()">Close</button>
</div>
<div id="popup2" class="popup">
<h2>This is Our Email!</h2><br>
<p>uitm@student.uitm.edu.my</p>
<button class = btns onclick="closePopup2()">Close</button>
</div>
<ul class="list">
<li>
<a href="sentFeedback.php">Rate Us</a>
</li>
<li>
<a href="sawEvents.php">Event</a>
</li>
<li>
<a href="renterProfile.php">Profile</a>
</li>
<li>
<a href="https://bendahari.uitm.edu.my/index.php/component/contact/category/55-cawangan-negeri-perak-kampus-tapah">Website</a>
</li>
</ul>
<p class="copyright">
© NextGen Techne | All Rights Reserved
</p>
</footer>
<script>
let currentSection = 0;
function scrollToSection(direction) {
const sections = document.querySelectorAll('.slider section');
currentSection = (currentSection + direction + sections.length) % sections.length;
sections[currentSection].scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'start' });
}
function scrollToFooter() {
const footer = document.getElementById('footer');
footer.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
</script>
<script src="script.js"></script>
</body>
</html>