-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
executable file
·109 lines (88 loc) · 3.76 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FPS QR Code Generator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="images/icons/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="contact1">
<div class="container-contact1">
<div id="qrcode" class="contact1-pic">
<img src="images/img-01.png" alt="IMG">
</div>
<form class="contact1-form validate-form">
<span class="contact1-form-title">
FPS QR Code Generator
</span>
<span>
<label>CAUTION: This is NOT official generator. For more information, please visit <a href="https://ffo.hkma.gov.hk/download/Common_QR_Code_Specification_for_Retail_Payments_in_HK_v1_0.pdf"
target="_blank">here</a>.</label>
</span>
<div class="wrap-input1 validate-input">
<label>Select an account</label>
<select class="input1" name="account">
<option value="02">FPS ID</option>
<option value="03">Mobile number</option>
<option value="04">Email</option>
</select>
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input">
<input type="text" class="input1 account" name="bank_code" placeholder="Bank Code (e.g. HSBC: 004, HSB: 024)" style="display: none;"></input>
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input">
<input type="text" class="input1 account" name="fps_id" placeholder="FPS ID"></input>
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input">
<input type="text" class="input1 account" name="mobile" placeholder="Mobile Number (e.g. +852-67891234)" style="display: none;"></input>
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input">
<input type="text" class="input1 account" name="email" placeholder="Email" style="display: none;"></input>
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input">
<input type="text" class="input1" name="mcc" value="0000" placeholder="Merchant Category Code (Default: 0000)"></input>
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input">
<input type="text" class="input1" name="currency" value="344" placeholder="Transaction Currency [ISO 4217] (HKD: 344)"></input>
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input">
<input type="text" class="input1" name="amount" placeholder="Transaction Amount (Optional)"></input>
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input">
<input type="text" class="input1" name="reference" placeholder="Reference Number (Optional)"></input>
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input">
<textarea class="input1" name="message" placeholder="Message" disable></textarea>
<span class="shadow-input1"></span>
</div>
<div class="wrap-input1 validate-input">
<input type="text" class="input1" name="hash" placeholder="Hash" disabled></input>
<span class="shadow-input1"></span>
</div>
<div class="container-contact1-form-btn">
<button class="contact1-form-btn">
<span>Generate</span>
</button>
</div>
</form>
</div>
</div>
<script src="vendor/jquery/jquery-3.2.1.min.js"></script>
<script src="js/pad.js"></script>
<script src="js/emv-code.js"></script>
<script src="js/crc-16-ccitt.js"></script>
<script src="js/qrcode.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>