-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
29 lines (29 loc) · 971 Bytes
/
index.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
<?php
require 'includes/common.php';
if (isset($_SESSION['email']))
{
header('location: products.php');
}
?>
<html>
<head>
<title>Index page</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css">
<script type="text/javascript" src="bootstrap/js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="index.css" type="text/css">
</head>
<body>
<?php include 'includes/header.php'; ?>
<div id="banner_image">
<div class="container">
<center>
<div id="banner_content">
<a href="products.html" class="btn btn-danger btn-lg active">Shop Now</a>
</div>
</center>
</div>
</div>
<?php include 'includes/footer.php'; ?>
</body>
</html>