-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment_page.php
98 lines (89 loc) · 4.51 KB
/
payment_page.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
<?php
$net_url = "https://".$_SERVER['HTTP_HOST']."/";
$local_url = "http://localhost/virtuspay/";
$base_url = $local_url;
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Credit Card Payment Form Template | PrepBootstrap</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="http://www.prepbootstrap.com/Content/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="http://www.prepbootstrap.com/Content/font-awesome/css/font-awesome.min.css" />
<script type="text/javascript" src="http://www.prepbootstrap.com/Content/js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="http://www.prepbootstrap.com/Content/bootstrap/js/bootstrap.min.js"></script>
<style>
.cc-img {
margin: 0 auto;
}
</style>
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Credit Card Payment Form <small>A responsive credit card payment template</small></h1>
</div>
<!-- Credit Card Payment Form - START -->
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 col-md-offset-4">
<div class="panel panel-default">
<div class="panel-heading">
<div class="row">
<h3 class="text-center">Payment Details</h3>
<img class="img-responsive cc-img" src="http://www.prepbootstrap.com/Content/images/shared/misc/creditcardicons.png">
</div>
</div>
<div class="panel-body">
<form role="form">
<div class="row">
<div class="col-xs-12">
<div class="form-group">
<label>CARD NUMBER</label>
<div class="input-group">
<input type="tel" class="form-control" placeholder="Valid Card Number" />
<span class="input-group-addon"><span class="fa fa-credit-card"></span></span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-7 col-md-7">
<div class="form-group">
<label><span class="hidden-xs">EXPIRATION</span><span class="visible-xs-inline">EXP</span> DATE</label>
<input type="tel" class="form-control" placeholder="MM / YY" />
</div>
</div>
<div class="col-xs-5 col-md-5 pull-right">
<div class="form-group">
<label>CV CODE</label>
<input type="tel" class="form-control" placeholder="CVC" />
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="form-group">
<label>CARD OWNER</label>
<input type="text" class="form-control" placeholder="Card Owner Names" />
</div>
</div>
</div>
</form>
</div>
<div class="panel-footer">
<div class="row">
<div class="col-xs-12">
<button class="btn btn-warning btn-lg btn-block">Process payment</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Credit Card Payment Form - END -->
</div>
</body>
</html>