Initial Commit
This commit is contained in:
120
indexes/modify/seller_add/attractions.php
Normal file
120
indexes/modify/seller_add/attractions.php
Normal file
@@ -0,0 +1,120 @@
|
||||
<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">
|
||||
<style>
|
||||
td{padding:3px;}
|
||||
table{background-color:rgb(255, 255, 255,0.5);}
|
||||
#div_ground {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color:rgb(225, 240, 255);
|
||||
}
|
||||
#div_add {
|
||||
position: absolute;
|
||||
top: 25%;
|
||||
left: 25%;
|
||||
width: 50%;
|
||||
height: 50%;
|
||||
}
|
||||
</style>
|
||||
</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="../seller/home.php">Home</a>
|
||||
<a href="#">Search</a>
|
||||
<a href="../../login/username.php">Log out</a>
|
||||
</div>
|
||||
</header>
|
||||
<header>
|
||||
<nav>
|
||||
<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>
|
||||
<div id="div_ground"></div>
|
||||
<div id="div_add">
|
||||
<form method="POST" action="">
|
||||
<table style="text-align: right;border:black '1';width: 100%;height: 100%;" align="center">
|
||||
<tr>
|
||||
<td colspan="2"><p style="text-align: center;font-size: 30px;"><b>Add Attraction</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="h_name">Attraction name:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="h_name" name="h_name" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="city">City:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="city" name="city" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="location">Location:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="location" name="location" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="opentime">Open time:</label></td>
|
||||
<td style="text-align: left"><input type="time" id="opentime" name="opentime" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="closetime">Close time:</label></td>
|
||||
<td style="text-align: left"><input type="time" id="closetime" name="closetime" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="ticket">Ticket:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="ticket" name="ticket" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="ticket">Children ticket:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="ticket" name="ticket" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="ticket">Special ticket:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="ticket" name="ticket" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="type">Type:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="type" name="type" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="tags">Tags:</label></td>
|
||||
<td style="text-align: left"><textarea id="tags" name="tags" required></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="description">Description:</label></td>
|
||||
<td style="text-align: left"><textarea id="description" name="description" required></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" style="text-align: center"><button type="submit">Add Attraction</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
116
indexes/modify/seller_add/foods.php
Normal file
116
indexes/modify/seller_add/foods.php
Normal file
@@ -0,0 +1,116 @@
|
||||
<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">
|
||||
<style>
|
||||
td{padding:3px;}
|
||||
table{background-color:rgb(255, 255, 255,0.5);}
|
||||
#div_ground {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color:rgb(225, 240, 255);
|
||||
}
|
||||
#div_add {
|
||||
position: absolute;
|
||||
top: 25%;
|
||||
left: 25%;
|
||||
width: 50%;
|
||||
height: 50%;
|
||||
}
|
||||
</style>
|
||||
</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="../seller/home.php">Home</a>
|
||||
<a href="#">Search</a>
|
||||
<a href="../../login/username.php">Log out</a>
|
||||
</div>
|
||||
</header>
|
||||
<header>
|
||||
<nav>
|
||||
<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>
|
||||
<div id="div_ground"></div>
|
||||
<div id="div_add">
|
||||
<form method="POST" action="">
|
||||
<table style="text-align: right;border:black '1';width: 100%;height: 100%;" align="center">
|
||||
<tr>
|
||||
<td colspan="2"><p style="text-align: center;font-size: 30px;"><b>Add Restaurant</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="h_name">Restaurant name:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="h_name" name="h_name" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="city">City:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="city" name="city" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="location">Location:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="location" name="location" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="opentime">Open time:</label></td>
|
||||
<td style="text-align: left"><input type="time" id="opentime" name="opentime" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="closetime">Close time:</label></td>
|
||||
<td style="text-align: left"><input type="time" id="closetime" name="closetime" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="type">Type:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="type" name="type" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="fee">Fee:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="fee" name="fee" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="style">Style:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="style" name="style" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="tags">Tags:</label></td>
|
||||
<td style="text-align: left"><textarea id="tags" name="tags" required></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="description">Description:</label></td>
|
||||
<td style="text-align: left"><textarea id="description" name="description" required></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" style="text-align: center"><button type="submit">Add Restaurant</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
104
indexes/modify/seller_add/guiding.php
Normal file
104
indexes/modify/seller_add/guiding.php
Normal file
@@ -0,0 +1,104 @@
|
||||
<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">
|
||||
<style>
|
||||
td{padding:3px;}
|
||||
table{background-color:rgb(255, 255, 255,0.5);}
|
||||
#div_ground {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color:rgb(225, 240, 255);
|
||||
}
|
||||
#div_add {
|
||||
position: absolute;
|
||||
top: 25%;
|
||||
left: 25%;
|
||||
width: 50%;
|
||||
height: 50%;
|
||||
}
|
||||
</style>
|
||||
</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="../seller/home.php">Home</a>
|
||||
<a href="#">Search</a>
|
||||
<a href="../../login/username.php">Log out</a>
|
||||
</div>
|
||||
</header>
|
||||
<header>
|
||||
<nav>
|
||||
<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>
|
||||
<div id="div_ground"></div>
|
||||
<div id="div_add">
|
||||
<form method="POST" action="">
|
||||
<table style="text-align: right;border:black '1';width: 100%;height: 100%;" align="center">
|
||||
<tr>
|
||||
<td colspan="2"><p style="text-align: center;font-size: 30px;"><b>Add Guide</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="h_name">Guide name:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="h_name" name="h_name" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="city">City:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="city" name="city" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="workage">Working age:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="workage" name="workage" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="fee">Fee:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="fee" name="fee" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="type">Type:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="type" name="type" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="traits">Traits:</label></td>
|
||||
<td style="text-align: left"><textarea id="traits" name="traits" required></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="description">Description:</label></td>
|
||||
<td style="text-align: left"><textarea id="description" name="description" required></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" style="text-align: center"><button type="submit">Add Guide</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
0
indexes/modify/seller_add/home.css
Normal file
0
indexes/modify/seller_add/home.css
Normal file
89
indexes/modify/seller_add/home.php
Normal file
89
indexes/modify/seller_add/home.php
Normal file
@@ -0,0 +1,89 @@
|
||||
<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">
|
||||
<style>
|
||||
@keyframes slideShow {
|
||||
0% {background-image: url("../../img/travel2.jpeg");}
|
||||
25% {background-image: url("../../img/travel2.jpeg");}
|
||||
50% {background-image: url("../../img/travel3.jpg");}
|
||||
75% {background-image: url("../../img/travel4.jpg");}
|
||||
100% {background-image: url("../../img/travel2.jpeg");}
|
||||
}
|
||||
#slideshow {
|
||||
width: 80%;
|
||||
height: 600px;
|
||||
background-size: cover;
|
||||
animation: slideShow 10s infinite;
|
||||
border-radius: 15px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
body{
|
||||
background-color:rgb(214,214,214)
|
||||
}
|
||||
|
||||
</style>
|
||||
</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="../seller/home.php">Home</a>
|
||||
<a href="#">Search</a>
|
||||
<a href="../../login/username.php">Log out</a>
|
||||
</div>
|
||||
</header>
|
||||
<header>
|
||||
<nav>
|
||||
<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>
|
||||
|
||||
|
||||
<div style="font-size: 40px; color: black;text-align: center; font-family: 'Times New Roman', Times, serif;">Please select the type of product you want to add above.</div><br><br>
|
||||
<div id="slideshow"></div>
|
||||
</body>
|
||||
|
||||
<br><br><br><br><br><br>
|
||||
|
||||
<footer>
|
||||
<div class="logo">
|
||||
<a href="../../index.php"><img src="../../icon/favicon/textlogo.svg" alt="RoamEase" height="50px"></a>
|
||||
<p style="font-size:10%;">©2023 COMP3013 Group10</p>
|
||||
</div>
|
||||
|
||||
<div class="nav-links" style="font-size: 80%;">
|
||||
<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>
|
||||
|
||||
</footer>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
105
indexes/modify/seller_add/stays.php
Normal file
105
indexes/modify/seller_add/stays.php
Normal file
@@ -0,0 +1,105 @@
|
||||
<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">
|
||||
<style>
|
||||
td{padding:3px;}
|
||||
table{background-color:rgb(255, 255, 255,0.5);}
|
||||
#div_ground {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color:rgb(225, 240, 255);
|
||||
}
|
||||
#div_add {
|
||||
position: absolute;
|
||||
top: 25%;
|
||||
left: 25%;
|
||||
width: 50%;
|
||||
height: 50%;
|
||||
}
|
||||
</style>
|
||||
</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="../seller/home.php">Home</a>
|
||||
<a href="#">Search</a>
|
||||
<a href="../../login/username.php">Log out</a>
|
||||
</div>
|
||||
</header>
|
||||
<header>
|
||||
<nav>
|
||||
<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>
|
||||
<div id="div_ground"></div>
|
||||
<div id="div_add">
|
||||
<form method="POST" action="">
|
||||
<table style="text-align: right;border:black '1';width: 100%;height: 100%;" align="center">
|
||||
<tr>
|
||||
<td colspan="2"><p style="text-align: center;font-size: 30px;"><b>Add Hotel</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td ><label for="h_name">Hotel name:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="h_name" name="h_name" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="city">City:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="city" name="city" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="location">Location:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="location" name="location" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="roomtype">Room type:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="roomtype" name="roomtype" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="fee">Fee:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="fee" name="fee" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="characteristics">Characteristics:</label></td>
|
||||
<td style="text-align: left"><textarea id="characteristics" name="characteristics" required></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="description">Description:</label></td>
|
||||
<td style="text-align: left"><textarea id="description" name="description" required></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" style="text-align: center;"><button type="submit">Add Hotel</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
112
indexes/modify/seller_add/transport.php
Normal file
112
indexes/modify/seller_add/transport.php
Normal file
@@ -0,0 +1,112 @@
|
||||
<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">
|
||||
<style>
|
||||
td{padding:3px;}
|
||||
table{background-color:rgb(255, 255, 255,0.5);}
|
||||
#div_ground {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color:rgb(225, 240, 255);
|
||||
}
|
||||
#div_add {
|
||||
position: absolute;
|
||||
top: 25%;
|
||||
left: 25%;
|
||||
width: 50%;
|
||||
height: 50%;
|
||||
}
|
||||
</style>
|
||||
</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="../seller/home.php">Home</a>
|
||||
<a href="#">Search</a>
|
||||
<a href="../../login/username.php">Log out</a>
|
||||
</div>
|
||||
</header>
|
||||
<header>
|
||||
<nav>
|
||||
<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>
|
||||
<div id="div_ground"></div>
|
||||
<div id="div_add">
|
||||
<form method="POST" action="">
|
||||
<table style="text-align: right;border:black '1';width: 100%;height: 100%;" align="center">
|
||||
<tr>
|
||||
<td colspan="2"><p style="text-align: center;font-size: 30px;"><b>Add Transportation</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="h_name">Transportation name:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="h_name" name="h_name" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="t_type">Transportation type:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="t_type" name="t_type" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="s_city">Departure City:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="s_city" name="s_city" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="e_city">Destination City:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="e_city" name="e_city" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="s_location">Departure Location:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="s_location" name="s_location" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="e_location">Destination Location:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="e_location" name="e_location" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="s_time">Departure time:</label></td>
|
||||
<td style="text-align: left"><input type="time" id="s_time" name="s_time" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="e_time">Destination time:</label></td>
|
||||
<td style="text-align: left"><input type="time" id="e_time" name="e_time" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="ticket">Ticket:</label></td>
|
||||
<td style="text-align: left"><input type="text" id="ticket" name="ticket" required></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" style="text-align: center"><button type="submit">Add Transportation</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user