-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.html
More file actions
executable file
·64 lines (63 loc) · 2 KB
/
payment.html
File metadata and controls
executable file
·64 lines (63 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Kuza Forms - Sell Anywhere, Grow your Business</title>
<link rel="stylesheet" href="css/custom/style.css">
<link rel="stylesheet" href="css/responsive/responsive.css">
<link rel="stylesheet" href="css/helper.css">
<link rel="stylesheet" href="css/custom.css">
<style>
.payWrap{
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.payLogo img {
border-radius: 3px;
}
.payCont {
border: 1px solid #aaa;
padding: 30px;
border-radius: 5px;
background: #fff;
}
</style>
</head>
<body>
<div class="container">
<form action="" method="POST" role="form" class=" payWrap">
<div class="row">
<div class="col-md-4 col-md-offset-4 payCont">
<h3 class="text-center">Make Payment</h3>
<hr>
<div class="row text-center payLogo">
<div class="col-xs-4"><img class="img-responsive" src="images/mtn_m.jpg" alt=""></div>
<div class="col-xs-4"><img class="img-responsive" src="images/tigo_m.jpg" alt=""></div>
<div class="col-xs-4"><img class="img-responsive" src="images/airtel_m.jpg" alt=""></div>
</div>
<div class="row">
<div class="form-group col-md-12">
<select class="form-control mr-t-30" required="required">
<option value="">Select Mobile Wallet</option>
<option value="">MTN Mobile Money</option>
<option value="">Tigo Cash</option>
<option value="">Airtel Money</option>
</select>
</div>
<div class="form-group col-md-12">
<label for="" class="control-label">Wallet #</label>
<input type="text" class="form-control" id="" placeholder="Enter your Wallet Number">
</div>
<div class="form-group col-md-12 mr-t-20 text-center mr-b-0">
<button type="submit" class="btn btn-lg btn-primary">Make Payment</button>
</div>
</div>
</div>
</div>
</form>
</div>
</body>
</html>