-
Notifications
You must be signed in to change notification settings - Fork 0
/
paywith.html
126 lines (84 loc) · 4.83 KB
/
paywith.html
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>login</title>
<meta content="" name="description">
<meta content="" name="keywords">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body style="background-color: #131D37;">
<section class="d-flex justify-content-center align-items-center">
<div class="container ">
<div class=" d-flex justify-content-center row ">
<div class=" col-lg-9 row paywithcard ">
<div class="col-lg-3 bank-names">
<div class="p-lg-4">
<h5 class="fw-bold">Pay with</h5>
<hr>
<div class="banks">
<img src="./assets/img/cbe.jpeg" class="bank-logo" alt="">
<span class="active bankname "> CBE Birr</span>
<hr>
</div>
<div class="banks">
<img src="./assets/img/cbe.jpeg" class="bank-logo" alt="">
<span class="bankname "> Telebirr</span>
<hr>
</div>
<div class="banks">
<img src="./assets/img/cbe.jpeg" class="bank-logo" alt="">
<span class=" bankname"> Hellocash</span>
<hr>
</div>
</div>
</div>
<div class="col-lg-8 payment-info">
<div class="p-3">
<div class="d-flex justify-content-between">
<div class=""><p>Afroperia</p></div>
<div class=""><p class="fw-bold">Pay 5000 <em>ETB</em></p></div>
</div>
<div>
<p class="fw-bold">Enter Your CBE Birr Bank Account Details</p>
</div>
<form>
<div class="form-outline mb-1">
<label class="form-label" for="">Account Number</label>
<input type="text" id="" class="form-control " placeholder=" " />
</div>
<div class="form-outline mb-1">
<label class="form-label" for="">Full Name</label>
<input type="text" id="" class="form-control " placeholder=" " />
</div>
<div class="row">
<div class="col-lg-6">
<div class="form-outline mb-1">
<label class="form-label" for="">Transaction ID</label>
<input type="text" id="" class="form-control " placeholder=" " />
</div>
</div>
<div class="col-lg-6">
<div class="form-outline mb-1">
<label class="form-label" for="">Screenshot</label>
<input type="file" id="" class="form-control " placeholder=" " />
</div>
</div>
</div>
<div class="text-center text-lg-start mt-4 pt-2">
<button type="button" class="btn btn-primary btn-lg" style="padding-left: 2.5rem; padding-right: 2.5rem;">Send</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="assets/js/main.js"></script>
</body>
</html>