-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmomopayment.php
91 lines (91 loc) · 4.63 KB
/
momopayment.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
<!DOCTYPE html>
<html>
<head>
<title>Thanh toán đơn hàng qua momo</title>
<link rel="icon" href="./upload/img/logo.png">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://code.jquery.com/jquery-latest.js"></script>
<script src="script/js/myJS.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="script/css/mystyle.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" />
</head>
<body>
<?php
if(isset( $_POST['idpay'])){
$id = $_POST['idpay'];
require_once './controller/Purchase_Control.php';
$purchase = new Purchase_Control();
$data = $purchase->getPurchaseById($id);
$iduser = $data['id_user'];
$sumTT = $data['thanhtoan'];
$MHD = $data['noidungTT'];
}else{
$iduser = $_COOKIE['login'];
$sumTT = 0;
if(isset($_GET['pay'])) $sumTT = $_GET['pay'];
$MHD = "THANHTOAN MHD".$iduser.$sumTT;
}
require_once "./controller/Option_Control.php";
$temp = new Option_Control();
$dataTT= $temp->GetBillingInformation1();
?>
<?php include 'views/header.html' ?>
<div class="between">
<div class="content">
<div class="container">
<div class="bg-white" style="margin-top: 20px;padding-bottom: 25px ; padding: 15px; text-align: center;">
<H2 style="margin-top: 15px; color: #fd7e14">TIẾN HÀNH THANH TOÁN CHUYỂN TIỀN QUA MOMO</H2>
<br>
<div style="width: 100%; max-width: 600px; margin: auto">
<p style="background: #027dc1; color: #fff; font-weight: 400; font-size: 20px; border-left: solid 5px #fd7e14;">Vui lòng chuyển tiền vào tài khoản <span style="font-weight: 600">MOMO</span> của chúng tôi theo thông tin dưới đây để chúng tôi xác nhận bạn thanh toán</p>
</div>
<div style="width: 100%; max-width: 600px; margin: auto">
<br>
<div style="background: #f0f5f5; border: solid 2px #a2c5c5; border-radius: 5px; text-align: left; padding: 10px; ">
<p>
<span style="font-size: 18px">Số điện thoại</span><br>
<span style="font-size: 25px; font-weight: 700"><?php echo $dataTT->sdt ?></span>
</p>
<p>
<span style="font-size: 18px">Tên chủ tài khoản:</span><br>
<span style="font-size: 25px; font-weight: 700"><?php echo $dataTT->ctkmomo ?></span>
</p>
<p>
<span style="font-size: 18px">Số tiền cần chuyển khoản:</span><br>
<span style="font-size: 25px; font-weight: 700"><?php echo number_format($sumTT,0,',','.')?> VND</span>
</p>
<p>
<span style="font-size: 18px">Nội dung chuyển khoản:</span><br>
<span style="font-size: 25px; font-weight: 700"><?php echo $MHD?></span>
</p>
<p style="color: #ff2222">Cảnh báo: Bạn PHẢI sử dụng <span style="font-weight: 600"><?php echo $MHD?></span> trong nội dung chuyển khoản và chuyển khoản đúng số tiền như trên, nếu không chúng tôi sẽ không thể xử lý thanh toán của bạn...</p>
</div>
<br><br>
<a href="./finishedorder.php"><button class="btn btn-info" style="width: 100%; font-weight: 600">XÁC NHẬN ĐÃ THANH TOÁN</button></a>
<br> <br>
<button onclick="huyThanhToan()" class="btn btn-outline-info" style="width: 100%; font-weight: 600">HỦY THANH TOÁN</button>
</div>
</div>
</div>
</div>
</div>
<?php include 'views/footer.html'?>
<script>
function huyThanhToan(){
alert("Bạn đã hủy thanh toán, để thanh toán lại vào Tình trạng đơn hàng...");
window.location='./'
}
$(window).load(function(){
responsive();
$(window).resize(function(){
responsive();
});
});
</script>
</body>
</html>