70 lines
2.1 KiB
PHP
70 lines
2.1 KiB
PHP
<html>
|
|
<head>
|
|
<title>RoamEase</title>
|
|
<link rel="shortcut icon" href="../icon/favicon/favicon.ico" type="image/x-icon" />
|
|
<link rel="icon" href="../icon/favicon/favicon.ico" type="image/x-icon" />
|
|
<link rel="stylesheet" href="./user/home.css?version=1" type="text/css" />
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<div class="logo">
|
|
<a href="home.php"><img src="../icon/favicon/logo_white.svg" alt="RoamEase"></a>
|
|
</div>
|
|
|
|
<div class="nav-links">
|
|
<a href="#">CNY</a>
|
|
<a href="#">Search</a>
|
|
<?php
|
|
if (isset($_SESSION['loggedin'])) {
|
|
echo '<a href="#">Cart</a><a href="#">Account</a>';
|
|
}
|
|
else {
|
|
echo '<a href="#">Sign up</a><a href="../login/username.php">Log in</a>';
|
|
}
|
|
?>
|
|
</div>
|
|
</header>
|
|
|
|
<header>
|
|
<nav>
|
|
<a href="plans.php">
|
|
<img src="../icon/header/plans.svg" alt="Plans">
|
|
</a>
|
|
<a href="stays.php">
|
|
<img src="../icon/header/stays.svg" alt="Stays">
|
|
</a>
|
|
<a href="transport.php">
|
|
<img src="../icon/header/transportations.svg" alt="Transportations">
|
|
</a>
|
|
<a href="foods.php">
|
|
<img src="../icon/header/foods.svg" alt="Foods">
|
|
</a>
|
|
<a href="attractions.php">
|
|
<img src="../icon/header/attractions.svg" alt="Attractions">
|
|
</a>
|
|
<a href="guiding.php">
|
|
<img src="../icon/header/guiding.svg" alt="Guiding">
|
|
</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<h1>Statements</h1>
|
|
|
|
<br><br><br><br><br><br>
|
|
|
|
<footer>
|
|
<img src="../icon/favicon/logo_white.svg" alt="RoamEase" width="300px">
|
|
<div style="margin: 20px 0;">
|
|
<a href="#" style="color: white; margin: 0 10px;">About us</a>
|
|
<a href="#" style="color: white; margin: 0 10px;">Privacy Policy</a>
|
|
<a href="#" style="color: white; margin: 0 10px;">Terms For Usage</a>
|
|
</div>
|
|
<p>© 2023 COMP3013 Group10. All rights reserved.</p>
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|