-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.php
More file actions
32 lines (30 loc) · 832 Bytes
/
success.php
File metadata and controls
32 lines (30 loc) · 832 Bytes
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
<?php
$title = 'Đặt hàng thành công';
include 'inc/header2.php';
$login_check = Session::get('customer_login');
if ($login_check == false) {
header('Location: dang-nhap.html');
}
?>
<style type="text/css">
h2.success_order {
text-align: center;
color: red;
}
p.success_note {
text-align: center;
padding: 8px;
font-size: 17px;
}
</style>
</div>
<div class="small-container" style="height: 100vh;">
<h2 class="title">Đặt hàng thành công</h2>
<div style="display:block; margin: 0 auto; text-align: center; align-items:center">
<img style="width:10%" src="images/checkv.png">
</div>
<p class="success_note">Chúng tôi sẽ liên hệ bạn sớm ,xem chi tiết đơn hàng của bạn <a style="font-weight: bold;" href="don-hang.html">tại đây</a></p>
</div>
<?php
include 'inc/footer.php';
?>