-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
89 lines (64 loc) · 2.81 KB
/
home.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
<?php
session_start();
if($_SESSION['CName']==NULL)
header("location:index.php")
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, intital-scale=1.0, user-scalable=yes">
<meta charset="utf-8"> <!--setting the character set as universal utf-8 format-->
<link rel="shortcut icon" href="favicon.ico"> <!--importing the title icon -->
<link rel="stylesheet" href="home.css"> <!--connecting the css file-->
<!--title to be displayed as tab name
title is actually dynamic here...we are using php script to include the name from the form in title -->
<title>RGG - Home Page </title>
</head>
<body>
<!-- <div id = 'homeHeading'>
RUSSIAN GREEN GROCERS <span class=emoji>🤩</span> -->
</div>
<div id=menu>
<table align=center width=99.6% height=20px>
<tr>
<td width=20% align=left>HEY, <?php echo strtoupper($_SESSION['CName'])?>!</td>
<td ID=title> RUSSIAN GREEN GROCERS<sup>™</sup></TD>
<td width=15% align=right><a href= "logout.php" class=logout>LOG OUT</a> </td>
</tr>
</table>
</div>
<div class="homePanel">
<div id ='myDetails' class='panelItems'>
<a href="userDetails.php" class='optionLinks'>
<div class=options id=first>
SEE YOUR DETAILS
</div>
</a>
</div>
<div id ='list' class='panelItems'>
<a href="list.php" class='optionLinks'>
<div class=options id=third>
SEE WHAT WE OWN
</div>
</a>
</div>
<div id ='update' class='panelItems'>
<a href="shopping.php" class='optionLinks'>
<div class=options id=second>
START SHOPPING
</div>
</a>
</div>
<div id ='cart' class='panelItems'>
<a href="cart.php" class='optionLinks'>
<div class=options id=fourth>
SHOPPING CART
</div>
</a>
</div>
</div>
<div id=footText>
<span id=copyright>©</span>2019 SANTOSH PANDEY | ALL RIGHTS RESERVED | RGG™
</div>
</body>
</html>