-
Notifications
You must be signed in to change notification settings - Fork 1
/
payment.html
116 lines (104 loc) · 3.26 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#59bd3c94">
<title>E-Store</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/payment.css">
</head>
<body>
<!--TOP NAVBAR -->
<nav class="navbar">
<div class="nav-start">
<div class="nav-item">
<div class="nav-link nav-brand">
<span class="first">E-</span><span class="second">SOKO</span>
</div>
</div>
</div>
<div class="nav-end">
<div class="nav-item">
<div class="nav-link">
<i class="fa fa-user-o"></i> John Doe
</div>
</div>
</div>
</nav>
<!--CONTENT WRAPPER-->
<div class="wrapper">
<div class="main-content">
<h4 class="section-title column is-12">Payment</h4>
<div class="column is-12 subtitle">Kindly select your preferred mode of payment</div>
<div class="payment-method-list">
<div class="payment-method">
<div class="default-details">
<div class="column is-12">
<label>
<input type="radio" name="method">
Paypal
</label>
</div>
</div>
<div class="provision-details no-display">
<div class="column is-12 field">
<label for="email">Enter Paypal email address</label>
<p class="control"><input type="email" class="input" id="email"></p>
</div>
<div class="action-buttons column is-12">
<button class="button process-payment">Pay now</button>
</div>
</div>
</div>
<div class="payment-method">
<div class="default-details">
<div class="field">
<label>
<input type="radio" name="method">
Lipa na MP-esa online
</label>
</div>
</div>
<div class="provision-details no-display">
<div class="column is-12 field">
<label for="mobile">Enter mobile number (should be MP-esa enabled )</label>
<p class="control"><input type="text" class="input" id="mobile"></p>
</div>
<div class="action-buttons column is-12">
<button class="button process-payment">Pay now</button>
</div>
</div>
</div>
</div>
</div>
<div class="cart-info">
<h5 class="section-title">Your order details</h5>
<div class="product-list">
<div class="product-item">
<div class="name">
Lettuce
</div>
<div class="total">Ksh 600.00</div>
</div>
</div>
<div class="total-calculation">
<div class="sub-total">
<span class="subtitle">Subtotal</span>
<span class="value">KSh 2999.00</span>
</div>
<div class="shipping-fee">
<span class="subtitle">Shipping fee</span>
<span class="value">KSh 0.00</span>
</div>
<div class="total">
<span class="subtitle">Total</span>
<span class="value">KSh 600.00</span>
</div>
</div>
</div>
</div>
<script src="assets/js/app-bundle.js"></script>
</body>
</html>