-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (70 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial scale=1,shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Basic Banking System</title>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="contain">
<div class="title">
<h1 style="color:whitesmoke;"><i class="fa fa-home"></i> Welcome To Basic Banking System</h1>
</div>
<div class="row activity text-center mt-5">
<div class="col-md act">
<br /><br />
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/12/User_icon_2.svg/350px-User_icon_2.svg.png"
class="img-fluid"
/>
<br /><br />
<a href="viewuser.php"
><button class="mt-1">View all Users</button></a
>
</div>
<div class="col-md act">
<br />
<img
src="https://image.flaticon.com/icons/png/512/1011/1011500.png"
class="img-fluid"
/>
<br /><br />
<a href="transfermoney.php"
><button class="mt-4">Transfer Money</button></a
>
</div>
<div class="col-md act mt-5">
<img
src="https://cdn.iconscout.com/icon/premium/png-512-thumb/transaction-history-1452656-1227574.png"
class="img-fluid"
/>
<br />
<a href="transactionhistory.php"
><button class="mt-4">View Transfer History</button></a
>
</div>
</div>
<footer class="footer">
<p><i class="fa fa-copyright"></i> 2021. Made by Rahul Srivastava</p>
<p>
For the Project of -
<b class="institute-name"> The Sparks Foundation</b>
</p>
</footer>
</div>
</body>
</html>