-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.php
executable file
·39 lines (30 loc) · 1.1 KB
/
homepage.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
<!DOCTYPE html>
<?php
$currentpage = "Home";
$listshop = $_GET['listShops'];
?>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="homepage.css">
<link rel="stylesheet" href="animate.css">
</head>
<body>
<?php
include 'connectvars.php';
?>
<header>
<div>
<div id="main"><a href="homepage.php" id="home">RATE MY BOBA </a></div>
<!-- <div id="bardiv"><em></em></div> -->
</div>
</header>
<div class="mainbody">
<img class="bobaimg" src="boba.png" alt="Bob">
<input class="homebutton" type="button" style="width:200px;height:50px;" value="FIND YOUR SHOP" onclick="window.location='listShops.php'" />
<input class="homebutton" type="button" style="width:200px;height:50px;" value="SEE ALL CUSTOMERS" onclick="window.location='listCustomers.php'" />
<input class="homebutton" type="button" style="width:200px;height:50px;" value="BECOME A CUSTOMER" onclick="window.location='addCustomer.php'" />
</div>
</body>
</html>