forked from fewhakko/Promptpay-QR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
135 lines (103 loc) · 5.49 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<html lang="en">
<head>
<title>PromptPay - QRCode</title>
<link rel="shortcut icon" href="favicon.ico">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="asset/css/bootstrap.min.css">
<style>
@import url('https://fonts.googleapis.com/css?family=Kanit');
body {
font-family: 'Kanit', sans-serif;
}
</style>
</head>
<body>
<!-- Image and text -->
<nav class="navbar navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="#">
<img src="favicon.ico" width="30" height="30" class="d-inline-block align-top" alt="">
PromptPay
</a>
<div>
</nav>
<div class="container">
<br>
<div class="card text-dark bg-light mb-3" style="margin-top : 30px;">
<div class="card-header">สร้าง QR Code สำหรับรับเงินเข้าบัญชีของคุณ</div>
<div class="card-body">
<div class="panel panel-info">
<div class="panel-body">
<form class="form-horizontal">
<div class="alert alert-dismissible alert-warning">
<h4 class="alert-heading">คำอธิบาย</h4>
<p class="mb-0"> </b>
เป็นครั้งแรกที่เราสามารถรับเงินจากเพื่อนหรือลูกค้า โดยไม่เสียค่าธรรมเนียมการโอน และไม่ต้องบอกข้อมูลบัญชีให้ยุ่งยาก
</p>
</div>
<br>
<div class="row">
<div class="col-lg-4 offset-lg-1">
<div class="form-group">
<label class="control-label">เบอร์โทรศัพท์ / เลขประจำตัวประชาชน</label>
<div class="form-group">
<div class="input-group mb-3">
<input type="text" id="percent" class="form-control" placeholder="06xxxxxxxx">
</div>
</div>
</div>
</div>
<div class="col-lg-4 offset-lg-2">
<div class="form-group">
<label class="control-label">จำนวนเงิน</label>
<div class="form-group">
<div class="input-group mb-3">
<input type="text" id="money" class="form-control" placeholder="10000">
</div>
</div>
</div>
</div>
</div>
<hr>
<button onclick="javascript:pexxrcent();" type="button" class="btn btn-success">สร้าง QR Code เพื่อโอนเงิน</button>
</form>
</div>
</div>
</div>
</div>
</div>
<br>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel">เสร็จ</h4>
<td><input class="form-control-plaintext hidden" style="color:white;" id="moneyzassza" readonly=""></td>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body" style="margin: auto;">
<img src="https://promptpay.github.io/img/PromptPay-logo.jpg" alt="พร้อมเพย์" style="max-width: 250px;margin-bottom: 10px;">
<br>
<img alt="qrcode" id="qrcode" style="max-width: 250px;margin-bottom: 10px;">
<div id="amount-show" style="text-align: center;"></div>
<div id="info-show" style="text-align: center; font-size: 70%; margin-top: 10px; color: #A6A6A6;">
สามารถสนับสนุนผู้สร้างได้ที่เบอร์ 0638428816 วอเลท
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default close-button" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<h6>
<center>COPYRIGHT © 2019 ALL SYSTEM BY FEWEIEI</center>
</h6>
<script src="asset/js/func.js"></script>
<script src="asset/js/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="asset/js/sweetalert.min.js"></script>
</body>
</html>