-
Notifications
You must be signed in to change notification settings - Fork 49
/
index.php
118 lines (106 loc) · 3.5 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lipa na mpesa</title>
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
rel="stylesheet"
/>
<link href="" rel="stylesheet" />
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" ">
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"
></script>
<style>
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap");
body {
background-color: #eaedf4;
font-family: "Rubik", sans-serif;
}
.card {
width: 310px;
border: none;
border-radius: 15px;
}
.justify-content-around div {
border: none;
border-radius: 20px;
background: #f3f4f6;
padding: 5px 20px 5px;
color: #8d9297;
}
.justify-content-around span {
font-size: 12px;
}
.justify-content-around div:hover {
background: #545ebd;
color: #fff;
cursor: pointer;
}
.justify-content-around div:nth-child(1) {
background: #545ebd;
color: #fff;
}
span.mt-0 {
color: #8d9297;
font-size: 12px;
}
h6 {
font-size: 15px;
}
.mpesa {
background-color: green !important;
}
img {
border-radius: 15px;
}
</style>
</head>
<body oncontextmenu="return false" class="snippet-body">
<div class="container d-flex justify-content-center">
<div class="card mt-5 px-3 py-4">
<div class="d-flex flex-row justify-content-around">
<div class="mpesa"><span>Mpesa </span></div>
<div><span>Paypal</span></div>
<div><span>Card</span></div>
</div>
<div class="media mt-4 pl-2">
<img src="./images/1200px-M-PESA_LOGO-01.svg.png" class="mr-3" height="75" />
<div class="media-body">
<h6 class="mt-1">Enter Amount & Number</h6>
</div>
</div>
<div class="media mt-3 pl-2">
<!--bs5 input-->
<form class="row g-3" action="./stk_initiate.php" method="POST">
<div class="col-12">
<label for="inputAddress" class="form-label">Amount</label>
<input type="text" class="form-control" name="amount" placeholder="Enter Amount">
</div>
<div class="col-12">
<label for="inputAddress2" class="form-label" >Phone Number</label>
<input type="text" class="form-control" name="phone" placeholder="Enter Phone Number">
</div>
<div class="col-12">
<button type="submit" class="btn btn-success" name="submit" value="submit">Donate</button>
</div>
</form>
<!--bs5 input-->
</div>
</div>
</div>
</div>
<script
type="text/javascript"
src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"
></script>
<script type="text/javascript" src=""></script>
<script type="text/javascript" src=""></script>
<script type="text/Javascript"></script>
</body>
</html>