-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
45 lines (42 loc) · 1.25 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
<?php
session_start();
$header="Shirts4Mike";
include('header.php');
if(!isset($_SESSION["name"]))
{?>
<script>
location.replace("login.php");
</script><?php
}
?>
<html>
<div class="img-responsive">
<img src="img/banner-background.jpg" width="100%" height="300">
<img src="img/mike-the-frog.png" width="35%" height="350" class="image">
<br><br><br>
<p class="text-center"><b>MIKE’S LATEST SHIRTS</b></p><br><br>
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-2 border">
<a href="#"><img src="img/shirts/shirt-101.jpg"width="200"></img>
<p class="text-center">VIEW DETAILS</p></a>
</div>
<div class="col-md-2 border">
<a href="#"><img src="img/shirts/shirt-102.jpg"width="200"></img>
<p class="text-center">VIEW DETAILS</p></a>
</div>
<div class="col-md-2 border">
<a href="#"><img src="img/shirts/shirt-103.jpg"width="200"></img>
<p class="text-center">VIEW DETAILS</p></a>
</div>
<div class="col-md-2 border">
<a href="#"><img src="img/shirts/shirt-104.jpg"width="200"></img>
<p class="text-center">VIEW DETAILS</p></a>
</div>
<div class="col-md-2">
</div>
</div>
</div>
</html>
<?php include('footer.php');?>