forked from winston-dsouza/ecommerce-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
121 lines (107 loc) · 4.16 KB
/
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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Planet Shopify | Online Shopping Site for Men</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" >
<link href='https://fonts.googleapis.com/css?family=Delius Swash Caps' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Andika' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
</head>
<body style="margin-bottom:200px">
<!--Header-->
<?php
include 'includes/header_menu.php';
include 'includes/check-if-added.php';
?>
<!--Header ends-->
<div id="content">
<div id="bg" class=" ">
<div class="container" style="padding-top:150px">
<div class="mx-auto p-5 text-white" id="banner_content" style="border-radius: 0.5rem;" >
<h1>We sell Happiness :)</h1>
<p>Flat 40% OFF on premium brands </p>
<a href="products.php" class="btn btn-warning btn-lg text-white">Shop Now</a>
</div>
</div>
</div>
</div>
<div class="text-center pt-4 h3">
* Be fashionable Men *
</div>
<!--menu highlights start-->
<div class="container pt-3">
<div class="row text-center ">
<div class="col-6 col-md-3 py-3">
<a href="products.php#watch"> <img src="images/watch.jpg" class="img-fluid " alt="" style="border-radius:0.5rem">
<!-- https://images.unsplash.com/photo-1523170335258-f5ed11844a49?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fm=jpg&w=400&fit=max-->
<div class="h5 pt-3 font-weight-bolder">
Watches
</div>
</a>
</div>
<div class="col-6 col-md-3 py-3 " >
<a href="products.php#shirt" >
<img src="images/clothing.jpg" class="img-fluid zoom" alt="" style="border-radius:0.5rem" >
<div class="h5 pt-3 font-weight-bolder">
Clothing
</div>
</a>
</div>
<div class="col-6 col-md-3 py-3">
<a href="products.php#shoes">
<img src="images/shoes.jpg" class="img-fluid " alt="" style="border-radius:0.5rem">
<div class="h5 pt-3 font-weight-bolder">
Shoes
</div>
</a>
</div>
<div class="col-6 col-md-3 py-3">
<a href="products.php#headphones">
<img src="images/headphones.jpg" class="img-fluid " alt="" style="border-radius:0.5rem">
<div class="h5 pt-3 font-weight-bolder">
Headphones
</div>
</div>
</a>
</div>
</div>
<!--menu highlights end-->
<!--footer -->
<?php include 'includes/footer.php'?>
<!--footer end-->
</body>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
$('[data-toggle="popover"]').popover();
});
$(document).ready(function() {
if(window.location.href.indexOf('#login') != -1) {
$('#login').modal('show');
}
});
</script>
<?php if (isset($_GET['error'])) {$z = $_GET['error'];
echo "<script type='text/javascript'>
$(document).ready(function(){
$('#signup').modal('show');
});
</script>";
echo "<script type='text/javascript'>alert('" . $z . "')</script>";}?>
<?php if (isset($_GET['errorl'])) {$z = $_GET['errorl'];
echo "<script type='text/javascript'>
$(document).ready(function(){
$('#login').modal('show');
});
</script>";
echo "<script type='text/javascript'>alert('" . $z . "')</script>";}?>
</html>