This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
139 lines (132 loc) · 4.49 KB
/
404.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!doctype html>
<html class="no-js" lang="en">
<?php
include_once 'elements\head.php';
include_once 'config\conn.php';
?>
<body>
<!-- WRAPPER START -->
<div class="wrapper bg-dark-white">
<?php include_once 'elements\header.php' ?>
<!-- HEADING-BANNER START -->
<div class="heading-banner-area overlay-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading-banner">
<div class="heading-banner-title">
<h2>404</h2>
</div>
<div class="breadcumbs pb-15">
<ul>
<li><a href="index.php">Home</a></li>
<li>404</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- HEADING-BANNER END -->
<!-- 404-AREA START -->
<div class="area-404 pt-80 pb-80">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="error-content text-center">
<img src="img/bg/error.png" alt="" />
<h4 class="text-light-black mt-60">Ooops.... Error 404</h4>
<h5 class="text-light-black">Sorry, But the page you are looking for does't exist</h5>
<div class="error-form mt-30 mb-30">
<form action="#">
<input type="text" placeholder="Search here..." />
<button type="submit"><i class="zmdi zmdi-search"></i></button>
</form>
</div>
<p class="text-uppercase">Or</p>
<a class="button-one submit-btn-4 go-to-home bg-white text-uppercase text-light-black"
href="index.php" data-text="go to home page">go to home page</a>
</div>
</div>
</div>
</div>
</div>
<!-- 404-AREA END -->
<!-- FOOTER START -->
<?php include_once 'elements\footer.php' ?>
<!-- FOOTER END -->
<!-- QUICKVIEW PRODUCT -->
<div id="quickview-wrapper">
<!-- Modal -->
<div class="modal fade" id="productModal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div class="modal-product">
<div class="product-images">
<div class="main-image images">
<img alt="#" src="img/product/quickview-photo.jpg" />
</div>
</div><!-- .product-images -->
<div class="product-info">
<h1>Aenean eu tristique</h1>
<div class="price-box-3">
<hr />
<div class="s-price-box">
<span class="new-price">$160.00</span>
<span class="old-price">$190.00</span>
</div>
<hr />
</div>
<a href="shop.html" class="see-all">See all features</a>
<div class="quick-add-to-cart">
<form method="post" class="cart">
<div class="numbers-row">
<input type="number" id="french-hens" value="3" min="1">
</div>
<button class="single_add_to_cart_button" type="submit">Add to cart</button>
</form>
</div>
<div class="quick-desc">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam fringilla augue nec
est tristique auctor. Donec non est at libero.
</div>
<div class="social-sharing">
<div class="widget widget_socialsharing_widget">
<h3 class="widget-title-modal">Share this product</h3>
<ul class="social-icons">
<li><a target="_blank" title="Google +" href="#"
class="gplus social-icon"><i
class="zmdi zmdi-google-plus"></i></a></li>
<li><a target="_blank" title="Twitter" href="#"
class="twitter social-icon"><i
class="zmdi zmdi-twitter"></i></a></li>
<li><a target="_blank" title="Facebook" href="#"
class="facebook social-icon"><i
class="zmdi zmdi-facebook"></i></a></li>
<li><a target="_blank" title="LinkedIn" href="#"
class="linkedin social-icon"><i
class="zmdi zmdi-linkedin"></i></a></li>
</ul>
</div>
</div>
</div><!-- .product-info -->
</div><!-- .modal-product -->
</div><!-- .modal-body -->
</div><!-- .modal-content -->
</div><!-- .modal-dialog -->
</div>
<!-- END Modal -->
</div>
<!-- END QUICKVIEW PRODUCT -->
</div>
<!-- WRAPPER END -->
<!-- all js here -->
<?php include_once 'elements\js.php' ?>
</body>
</html>