-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
302 lines (297 loc) · 10.9 KB
/
index.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<!-- MohammadReza Nadirkhanloo -->
<!DOCTYPE html>
<html lang="en" class="overflow-x-hidden">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Internet bank</title>
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./icon/bootstrap-icons.min.css" />
<link rel="icon" type="image/png" href="./image/bootstrap-logo.png" />
<meta name="description" content="Front-end Developer MR Nadirkhanloo " />
</head>
<body class="overflow-x-hidden">
<header>
<nav class="navbar border-bottom rounded-3 border-dark-subtle shadow">
<div
class="container-fluid container-xxl flex-column flex-sm-row gap-2"
>
<div>
<a class="navbar-brand fw-bold fs-4 welcom"
>Login in to get started</a
>
</div>
<div><i class="bi bi-bank h2"></i></div>
<form class="d-flex login" style="width: 260px">
<input
class="form-control me-2 text-center rounded-pill login_user"
type="text"
placeholder="user"
required
/>
<input
class="form-control me-2 text-center rounded-pill login_pass"
type="password"
placeholder="password"
required
/>
<button class="btn btn-outline-light btn-sm login__btn">
<i class="bi bi-box-arrow-in-right text-dark h4"></i>
</button>
</form>
</div>
</nav>
</header>
<main class="app mt-5">
<div class="container d-none box_data">
<div class="row g-4">
<div class="col-12">
<div class="row justify-content-between align-items-center">
<div class="col-sm-auto col-12">
<p class="fs-3 fw-bold">Current balance</p>
<p class="fw-bolder text-secondary">
AS of <span class="label_date">25/03/2024</span>
</p>
</div>
<div class="col-sm-auto col-12">
<p class="fw-bold fs-1 balance text-end">0000€</p>
</div>
</div>
</div>
<div class="col-lg-8 order-2 order-lg-1">
<div
class="bg-white rounded-4 shadow overflow-auto"
style="height: 610px"
>
<ul class="list-group list-group-flush rounded-4">
<li class="list-group-item py-3 px-5">
<div class="d-flex align-items-center">
<div class="flex-grow-1 d-flex gap-5 align-items-center">
<p
class="text_li px-2 py-1 rounded-pill bg-success bg-gradient"
></p>
</div>
<div>
<p class="fs-4 fw-bold"></p>
</div>
</div>
</li>
<li class="list-group-item py-3 px-5">
<div class="d-flex align-items-center">
<div class="flex-grow-1 d-flex gap-5 align-items-center">
<p
class="text_li px-2 py-1 rounded-pill bg-danger bg-gradient"
>
1 withdrawal
</p>
</div>
<div>
<p class="fs-4 fw-bold"></p>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="col-lg-4 order-1 order-lg-2">
<div class="row g-4">
<div class="col-12">
<div class="p-5 bg-warning bg-gradient rounded-5">
<p class="fw-bold fs-4 mb-3">Transfer money</p>
<form class="d-flex gap-2">
<input
class="form-control fw-bold bg-warning-subtle input_transfer"
type="text"
placeholder="Transfer to"
/>
<input
class="form-control fw-bold bg-warning-subtle input_amount"
type="number"
placeholder="Amount"
/>
<button class="btn btn-warning p-1 btn_transfer">
<i class="bi bi-arrow-right-circle h4"></i>
</button>
</form>
</div>
</div>
<div class="col-12">
<div class="p-5 bg-success rounded-5">
<p class="fw-bold fs-4 mb-3">Request loan</p>
<form class="d-flex gap-2">
<input
class="form-control fw-bold bg-success-subtle input_request"
type="number"
placeholder="Amount"
/>
<button class="btn btn-success p-1 btn_request">
<i class="bi bi-arrow-right-circle h4 text-dark"></i>
</button>
</form>
</div>
</div>
<div class="col-12">
<div class="p-5 bg-danger rounded-5">
<p class="fw-bold fs-4 mb-3">Delete account</p>
<form class="d-flex gap-2">
<input
class="form-control fw-bold bg-danger-subtle input_delete_user"
type="text"
placeholder="Confirm user"
/>
<input
class="form-control fw-bold bg-danger-subtle input_delete_pass"
type="number"
placeholder="Confirm PIN"
/>
<button class="btn btn-danger p-1 btn_delete">
<i class="bi bi-arrow-right-circle h4 text-dark"></i>
</button>
</form>
</div>
</div>
</div>
</div>
<div class="col-12 order-3 mb-4">
<div class="row g-3 align-items-center justify-content-between">
<div class="col-lg-8">
<div
class="row text-center g-3 align-items-center fw-bold text-secondary"
>
<div class="col-sm-3 col-6">
<p>
IN
<span class="text-success fs-3 summary_value">0000€</span>
</p>
</div>
<div class="col-sm-3 col-6">
<p>
OUT <span class="text-danger fs-3 sumOut">0000€</span>
</p>
</div>
<div class="col-sm-3 col-6">
<p>
INTEREST
<span class="text-success fs-3 sumINTEREST">0000€</span>
</p>
</div>
<div class="col-sm-3 col-6">
<button class="btn btn-light fw-bold shadow-sm btn_sort">
SORT<i class="bi bi-arrow-down-up"></i>
</button>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="fw-bold text-secondary text-center">
<p>
You will be logged out in
<span class="text-dark fs-5 timer">05:00</span>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer
class="d-flex justify-content-center p-3 border-top rounded-1 shadow-sm"
>
<ul class="nav list-unstyled">
<li class="ms-3">
<a class="text-body-secondary" href="https://t.me/+989222032902"
><i class="bi bi-telegram"></i
></a>
</li>
<li class="ms-3">
<a
class="text-body-secondary"
href="https://github.com/MohammadrezaNadirkhanloo"
><i class="bi bi-github"></i
></a>
</li>
<li class="ms-3">
<a
class="text-body-secondary"
href="mailto:m.nadirkhanloo1380@gmail.com"
><i class="bi bi-google"></i
></a>
</li>
</ul>
</footer>
<!-- Button trigger modal -->
<button
type="button"
class="btn d-none btn_help"
data-bs-toggle="modal"
data-bs-target="#exampleModal"
>
Help...
</button>
<!-- Modal -->
<div
class="modal fade"
id="exampleModal"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5 fw-bold" id="exampleModalLabel">
Internet Bank Help...
</h1>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body text_style px-4 py-3">
<p class="fs-5 fw-bold">Welcome!</p>
<p class="mb-3">
This project functions like wallet applications; you can check
your account balance, send money to users, request loans, delete
your user account, and more. All these actions are possible with
this project.
</p>
<p class="fw-bold mb-1">
🛑 However, there are some rules for using this application:
</p>
<p>1 - You must log in to perform any operations.</p>
<p>
2 - If you are inactive for 5 minutes, your user will be
automatically logged out, and you will need to log in again.
</p>
<p>
3 - To request a loan, you must have at least 60% of the requested
amount in transactions for the loan request to be approved.
</p>
<p class="fw-bold mt-3">
🔒How to log in: To log in, you must enter a username and password
at the top of the site, such as:🔑
</p>
<pre>
mn - 1111
mk - 2222
ar - 3333
ak - 4444
</pre
>
<p class="mb-3 text-decoration-underline">
🚫 If you perform an incorrect action, an error message will be
displayed. 🚫
</p>
“Good luck!”👋
</div>
</div>
</div>
</div>
<script src="./js/script.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
</body>
</html>