-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpayment.html
53 lines (49 loc) · 2.21 KB
/
payment.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
<!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>Greendeliver</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/payment.css">
</head>
<body>
<div id="container">
<div class="container--fluid">
<h1>PAYMENT</h1>
<p> <h2>select mode of payment </h2> </p>
<div class="images"> <img src="./Assets/mpesa-logo-removebg.png" alt="mpesa logo" height="50vh"><img src="./Assets/cashbgremoved.png" alt="cash png" height="50vh"></div>
<div class="personal--info">
<h3>Personal Information</h3>
<form>
<label for="firstname">First Name </label><br>
<input type="text" name="" id=""><br>
<label for="lasttname">Last Name </label><br>
<input type="text" name="" id=""><br>
</form>
</div>
<div class="billing--info">
<h3>Billing Information</h3>
<form>
<label for="phone--no">Phone Number</label><br>
<input type="text" name="" id="value" required="true" value=""><br>
<label for="amount">Amount</label><br>
<input type="text" name="" id="amount" required="true" value="Ksh."><br>
<a href=""><button onclick="sendPrompt()">SEND PROMPT</button></a>
</form>
</div>
<div class="d-flex flex-row justify-content-around">
<a href="products.html"><input type="button" value="Back" onclick="previous()"></a> <a href="customer-order.html"><input type="button" onclick="next()" value="Next"></a>
</div>
</div>
</div>
<div id="complete">
</div>
<script src="Js/payment.js"></script>
</body>
</html>