-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
63 lines (49 loc) · 2.3 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
<?php
/**
* Wordline Sips Payment
* Author : gmonseur
* Source : https://github.com/worldline/Sips-International-non-FR-PHPlibrary
*/
require 'config/config.php';
require 'vendor/autoload.php';
?>
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Wordline Test</title>
<link rel="stylesheet" href="css/milligram.min.css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="column">
<h1>Wordline Sips Test</h1>
<div class="column column-50">
<form method="post" action="process.php">
<label for="amount">amount</label>
<input type="text" value="55" name="amount" id="amount" />
<label for="currency">currency</label>
<input type="text" value="EUR" name="currency" id="currency" />
<label for="merchantId">merchantId</label>
<input type="text" value="<?php echo $sips_config['merchantId']?>" name="merchantId" id="merchantId" />
<label for="normalReturnUrl">normalReturnUrl</label>
<input type="text" value="http://sips.pixfactory.pro/confirmation.php" name="normalReturnUrl" id="normalReturnUrl" />
<label for="transactionReference">transactionReference</label>
<input type="text" value="<?php echo rand(); ?>" name="transactionReference" id="transactionReference" />
<label for="keyVersion">keyVersion</label>
<input type="text" value="<?php echo $sips_config['keyVersion']; ?>" name="keyVersion" id="keyVersion" />
<label for="paymentBrand">Payment Brand</label>
<small>It is possible to test VISA, Mastercard transactions only in Test Mode</small>
<select name="paymentBrand" id="paymentBrand">
<option value="MASTERCARD">MASTERCARD</option>
<option value="VISA">VISA</option>
</select>
<input type="submit" value="Proceed to payment">
</form>
</div>
</div>
</div>
</div>
</body>
</html>