-
Notifications
You must be signed in to change notification settings - Fork 0
/
All Users.html
253 lines (221 loc) · 10 KB
/
All Users.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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>THE SPARK BANK </title>
<link rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/css/bootstrap-material-design.min.css">
<link rel="stylesheet" href="">
<link rel ="Stylesheet" href ="STYLESHEET1.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">
<!-- JQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
crossorigin="anonymous"></script>
<!-- JQUERY CUSTOM --->
<script>
</script>
</head>
<body>
<!-- NAVIGATION BAR -->
<div class="header">
<!-- HEADER LOGO -->
<div class="header-logo"> THE SPARK BANK </div>
<!-- MENU BUTTON -->
<span id="menu_btn" ><i class="fas fa-bars menu-btn id= "></i></span>
<!-- HEADER LIST -->
<div class="header-list" id="header_list">
<ul>
<li> <a href="sparks bank .html">HOME </a> </li>
<li> <a href="">ABOUT US</a> </li>
<li> <a href="">CONTACT US</a> </li>
</ul>
</div>
</div>
<br>
<br>
<br>
<br>
<div class="main_body">
<div class="my-info text-center">
<h2>Name: PRIYANKA CHANDRA</h2>
<h4>Net Bank Balance: $<span id="myAccountBalance">10000</span></h4>
<span id="allusers" > <button class="btn btn-info" data-toggle="modal" >ALL USERS </button>
<button class="btn btn-info" data-toggle="modal" data-target="#sendMoney">TRANSFER MONEY </button>
<a class="btn btn-info" href="" data-toggle="modal" data-target="#transactionHistory">HISTORY</a>
</div>
<!-- Modal send money -->
<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="">
<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">
<div class="input-group-append">
<span class="input-group-text" id="basic-addon2">@email.com</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)">
<div class="input-group-append">
<span class="input-group-text">.00</span>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" onclick="sendMoney()" class="btn btn-success" data-dismiss="modal">Send
Money</button>
</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>
<!-- table -->
<div id="user_table" >
<div class="container">
<div class="table-responsive">
<table class="table table-hover table-bordered">
<thead>
<tr class="user_table">
<th scope="col">Sl. No.</th>
<th scope="col">Name</th>
<th scope="col">E-mail</th>
<th scope="col">Bank Balance(in $)</th>
</tr>
</thead>
<tbody>
<tr class="table-light">
<td scope="row">1</td>
<td>Avi</td>
<td>[email protected]</td>
<td>
<p id="aviBankBalance">3700</p>
</td>
</tr>
<tr class="table-info">
<td scope="row">2</td>
<td>Chaing</td>
<td>[email protected]</td>
<td>
<p id="chaingBankBalance">2900</p>
</td>
</tr>
<tr class="table-light">
<td scope="row">3</td>
<td>John</td>
<td>[email protected]</td>
<td>
<p id="johnBankBalance">4600</p>
</td>
</tr>
<tr class="table-info">
<td scope="row">4</td>
<td>Rewa</td>
<td>[email protected]</td>
<td>
<p id="rewaBankBalance">44400</p>
</td>
</tr>
<tr class="table-light">
<td scope="row">5</td>
<td>Athrav</td>
<td>[email protected]</td>
<td>
<p id="athravBankBalance">6300</p>
</td>
</tr>
<tr class="table-info">
<td scope="row">6</td>
<td>Bella</td>
<td>[email protected]</td>
<td>
<p id="bellaBankBalance">12000</p>
</td>
</tr>
<tr class="table-light">
<td>7</td>
<td>Salena</td>
<td>[email protected]</td>
<td>
<p id="salenaBankBalance">2300</p>
</td>
</tr>
<tr class="table-info">
<td scope="row">8</td>
<td>Ansh</td>
<td>[email protected]</td>
<td>
<p id="anshBankBalance">67009</p>
</td>
</tr>
<tr class="table-light">
<td scope="row">9</td>
<td>Khyati</td>
<td>[email protected]</td>
<td>
<p id="khyatiBankBalance">9500</p>
</td>
</tr>
<tr class="table-info">
<td scope="row">10</td>
<td>Rony</td>
<td>[email protected]</td>
<td>
<p id="ronyBankBalance">3505</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-----------------------------footer---------------------------------->
<div class="footer">
© 2021 | Designed by PRIYANKA CHANDRA<br>
for the project of THE SPARKS FOUNDATION
</div>
<script src="js.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>