-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoneyTransaction.html
234 lines (220 loc) · 10.3 KB
/
moneyTransaction.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!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>MyBank - Transanction</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Syne+Tactile&family=Ubuntu&family=Ubuntu+Mono:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap-material-design.min.css">
<link rel="stylesheet" href="assets/css/customer.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="mainHeader">
<img src="https://png.pngtree.com/template/20190316/ourmid/pngtree-banking-logo-image_80425.jpg" alt="logo">
<h1>My Bank</h1>
</div>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="customers.html">View All Customers</a></li>
<li><a href="moneyTransaction.php" class="active">Money Transanction</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="help.html">Help</a></li>
</ul>
<div class="right">
<input type="text" name="search" id="search" placeholder="Search here..">
</div>
</div>
<div class="my-info text-center">
<h2>Details</h2>
<h4>Bank Balance<span id="myAccountBalance">100000</span></h4>
<button class="btn btn-info my-3" data-toggle="modal" data-target="#sendMoney">Send Money</button>
<a class="btn btn-info my-3" href="./moneytranc.php" data-toggle="modal" data-target="#transactionHistory">See All Transaction</a>
</div>
<div class="modal fade" id="sendMoney" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Send Money</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form action="CODE.php" method="POST">
<div class="input-group mb-3">
<input type="text" id="enterName" class="form-control" placeholder="Recipient's username"
aria-label="Recipient's username" aria-describedby="basic-addon2" name ="firstname" >
<div class="input-group-append">
<span class="input-group-text" id="basic-addon2">Happy Banking</span>
</div>
</div>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">₹ </span>
</div>
<input type="text" id="enterAmount" class="form-control" placeholder=" Enter Amount"
aria-label="Amount (to the nearest dollar)" name ="amount">
<div class="input-group-append">
<span class="input-group-text">.00</span>
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-primary">Close</button>
<input type="submit" value="Send Money" class="btn btn-success"/>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Modal transaction History-->
<div class="modal fade" id="transactionHistory" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Transaction History</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<ol id="transaction-history-body">
</ol>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="container">
<h2 class="py-3">Customers List</h2>
<table class="table table-hover">
<thead>
<tr class="hd">
<th>Account Number</th>
<th>Name</th>
<th>Email</th>
<th>Balance</th>
</tr>
</thead>
<tbody>
<tr class="cl">
<td>1</td>
<td>Sweta</td>
<td>[email protected]</td>
<td>987000</td>
</tr>
<tr class="cl">
<td>2</td>
<td>Siya</td>
<td>[email protected]</td>
<td>880000</td>
</tr>
<tr class="cl">
<td>3</td>
<td>Kavya</td>
<td>[email protected]</td>
<td>768000</td>
</tr>
<tr class="cl">
<td>4</td>
<td>Prayas</td>
<td>[email protected]</td>
<td>650000</td>
</tr>
<tr class="cl">
<td>5</td>
<td>Shipra</td>
<td>[email protected]</td>
<td>487000</td>
</tr>
<tr class="cl">
<td>6</td>
<td>Pragya</td>
<td>[email protected]</td>
<td>675900</td>
</tr>
<tr class="cl">
<td>7</td>
<td>Harshita</td>
<td>[email protected]</td>
<td>470000</td>
</tr>
<tr class="cl">
<td>8</td>
<td>Akash</td>
<td>[email protected]</td>
<td>890000</td>
</tr>
<!-- <tr class="cl">
<td>9</td>
<td>Lana</td>
<td>[email protected]</td>
<td>675000</td>
</tr>
<tr class="cl">
<td>10</td>
<td>Kartik</td>
<td>[email protected]</td>
<td>500000</td>
</tr>
<tr class="cl">
<td>11</td>
<td>Mayank</td>
<td>[email protected]</td>
<td>890000</td>
</tr>
<tr class="cl">
<td>12</td>
<td>Ansh</td>
<td>[email protected]</td>
<td>700000</td>
</tr>
<tr class="cl">
<td>13</td>
<td>Shina</td>
<td>[email protected]</td>
<td>440000</td>
</tr>
<tr class="cl">
<td>14</td>
<td>Jenny</td>
<td>[email protected]</td>
<td>402000</td>
</tr>
<tr class="cl">
<td>15</td>
<td>Pritam</td>
<td>[email protected]</td>
<td>880000</td>
</tr> -->
</tbody>
</table>
</header>
<footer id="footer">
|Copyright © 2022 SparksFoundationBank.com | All rights reserved
</footer>
<script src="jsbank.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/umd/popper.js"></script>
<script src="https://unpkg.com/[email protected]/dist/js/bootstrap-material-design.js"></script>
</body>
</html>