-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomer list.html
243 lines (220 loc) · 9.49 KB
/
customer list.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>View Customers</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;900&family=Ubuntu:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script src="https://use.fontawesome.com/releases/v5.0.7/js/all.js" charset="utf-8"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body>
<!-- title section -->
<section id="title">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="index.html">
<h2 class="navbar-heading">Basic Banking System</h2>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="customer list.html">View Customers</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="about.html">About TSF Bank</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="my-info text-center">
<button class="btn btn-outline-light" data-toggle="modal" data-target="#sendMoney">Send Money</button>
<a class="btn btn-outline-light" href="history.html" data-toggle="modal" data-target="#transactionHistory">See All Transactions</a>
</div>
</section>
<section id="main" class="coloured-section">
<div class="modal fade" id="sendMoney" tableindex="-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="enterSName" class="form-control" placeholder="Sender's Username" aria-label="Sender's Username" aria-describedby="basic-addon2">
<div class="input-group-append">
<span class="input-group-text" id="basic-addon2">@gmail.com</span>
</div>
</div>
<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">@gmail.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">
<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>
<!--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 class="container" style="background-color: black; color: white;border-radius: 25px;">
<div class="table-responsive">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th scope="col">Sr. No.</th>
<th scope="col">Name</th>
<th scope="col">E-Mail ID</th>
<th scope="col">Bank Balance</th>
</tr>
</thead>
<tbody>
<tr>
<td scope="row">1</td>
<td>roy</td>
<td>[email protected]</td>
<td>
<p id="royBankBalance">25000</p>
</td>
</tr>
<tr>
<td scope="row">2</td>
<td>jay</td>
<td>[email protected]</td>
<td>
<p id="jayBankBalance">50000</p>
</td>
</tr>
<tr>
<td scope="row">3</td>
<td>rohith</td>
<td>[email protected]</td>
<td>
<p id="rohithBankBalance">55000</p>
</td>
</tr>
<tr>
<td scope="row">4</td>
<td>Kiran</td>
<td>[email protected]</td>
<td>
<p id="KiranBankBalance">75000</p>
</td>
</tr>
<tr>
<td scope="row">5</td>
<td>Maya</td>
<td>[email protected]</td>
<td>
<p id="MayaBankBalance">45000</p>
</td>
</tr>
<tr>
<td scope="row">6</td>
<td>Liam</td>
<td>[email protected]</td>
<td>
<p id="LiamBankBalance">70000</p>
</td>
</tr>
<tr>
<td scope="row">7</td>
<td>Alexander</td>
<td>[email protected]</td>
<td>
<p id="AlexanderBankBalance">81000</p>
</td>
</tr>
<tr>
<td scope="row">8</td>
<td>Lucas</td>
<td>[email protected]</td>
<td>
<p id="LucasBankBalance">95000</p>
</td>
</tr>
<tr>
<td scope="row">9</td>
<td>Noah</td>
<td>[email protected]</td>
<td>
<p id="NoahBankBalance">40000</p>
</td>
</tr>
<tr>
<td scope="row">10</td>
<td>Jasmine</td>
<td>[email protected]</td>
<td>
<p id="JasmineBankBalance">25000</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<footer class="white-section" id="footer">
<div class="container-fluid" >
<a class="github" href="https://github.com/Purushothamreddy23" style="color: white;"><i class="social-icon fab fa-github fa-2x"></i></a>
<a class="instagram" href="https://instagram.com/mr_purushotham_"style="color: white;"><i class="social-icon fab fa-instagram fa-2x"></i></a>
<a class="linkedin" href="https://www.linkedin.com/in/purushothamreddytiyyagura"style="color: white;"><i class="social-icon fab fa-linkedin fa-2x"></i></a>
<br>
<br>
<p> ©PURUSHOTHAM REDDY</p>
</div>
</footer>
</section>
<script src="script.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>