-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
71 lines (47 loc) · 2.19 KB
/
index.php
File metadata and controls
71 lines (47 loc) · 2.19 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Payplugjs example</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="styles.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<section id="contact">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>Payplugjs example</h1>
<p>Send payment details via the Form below</p>
<br />
<form method="post" action="cart.php" action="payment.php" name="index" role="form" onsubmit="return checkForm(this);">
<div class="form-group">
<label for="guest">Please enter your firstname:</label>
<input type="text" class="form-control" id="guest" name="guest" placeholder="Your firstname" required autocomplete="on">
</div>
<div class="form-group">
<label for="amount">Which amount do you want to pay?:</label>
<input type="number" class="form-control" id="amount" name="amount" placeholder="Amount to pay" required autocomplete="on">
</div>
<p class="text-align">
<button type="submit" class="btn btn-primary id=" submit ">Submit</button>
</p>
</form>
</div>
</div>
</div>
</section>
</body>
<br /><br /><br /><br />
<footer>
<div>
<a href="https://www.payplug.com " target="_blank ">
<!--Center the image and make it responsive by the use of class="center-block img-responsive " -->
<img src="https://s3-eu-west-1.amazonaws.com/payplug-badges/en/badge_wide.png " class="center-block img-responsive " width="500px " border="0 "/>
</a>
</div>
</footer>
</html>