-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.html
More file actions
49 lines (48 loc) · 1.76 KB
/
Copy pathpayment.html
File metadata and controls
49 lines (48 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Kuza Forms - Sell Anywhere, Grow your Business</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/custom.css">
<style>
</style>
</head>
<body>
<div class="container">
<form action="index.html" method="POST" role="form" class="singleWrap">
<div class="w-100">
<div class="row pd-30">
<div class="col-lg-4 col-lg-offset-4 col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2 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 mr-t-30">
<div class="form-group col-md-12">
<select class="form-control" 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-primary">Make Payment</button>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</body>
</html>