-
Notifications
You must be signed in to change notification settings - Fork 0
/
finish.php
38 lines (38 loc) · 1.11 KB
/
finish.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
<!-- login -->
<?php
include('header.php');
$select_opt1=['email'=>$_COOKIE['userid']];
$rsedit=$obj->select('users',$select_opt1);
?>
<div class="address py-5" id="contact">
<div class="container py-xl-5 py-lg-3">
<div class="title text-center mb-5">
<h3 class="mb-2">Duncho | Order Finish</h3>
</div>
<div class="row">
<div class="col-lg-6 mx-auto mt-lg-0 mt-5">
<div class="alert alert-success address-grid">
<i class="fa fa-check-circle"></i> We have received your order and is now awaiting release from our store.We will notify you upon arrival.
<div class="text-center mt-2">
<a href="index.php" class="btn btn-secondary"><i class="fa fa-arrow-left"></i> shop more</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$(function()
{
if(localStorage.userid ==='' || localStorage.userid ===undefined)
{
window.location='login.php';
}
else
{
$('.logged_in,.home-links').removeClass('d-none');
$('.addcart_btn').attr('disabled',false);
}
});
</script>
<?php include('footer.php') ?>