-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (115 loc) · 3.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
<title></title>
</head>
<body>
<div class="nav"></div>
<div class="login">
<form action="" method="get" accept-charset="utf-8">
<img src="assets/berry-removebg-preview.png" alt="logo" />
<h1>BERRY BANK</h1>
<p>Please enter details below to log in.</p>
<input
type="text"
name="user"
id="lguser"
placeholder="Enter username"
/>
<input
type="password"
name="pword"
id="lgpword"
placeholder="Enter password"
/>
<input type="submit" name="lgsubmit" id="lgsubmit" value="Login" />
</form>
<div class="db"></div>
</div>
<!--profile page-->
<div class="profile">
<h1 class="proh1">Profile</h1>
<div class="passport">
<div class="deco">
<p class="welcome">Welcome, Prof</p>
<div class="pro-icons">
<img
src="assets/notification.png"
alt="notification"
style="width: 25px"
/>
<img
src="assets/icons8-user-64 (2).png"
alt="user-icon"
style="width: 25px"
/>
</div>
</div>
<h6>Account balance :</h6>
<div class="disscreen">
<h1>N </h1><h1 class="pgdisamt"> 100</h1>
</div>
<div class="btns">
<button class="pgbtntrs">Transaction</button>
<button class="pgbtnlgo">Log Out</button>
</div>
</div>
<!-- dashboard functionality icons -->
<div class="dbicons">
<div class="dbicon dbicon1">
<i class="material-icons">timeline</i>
<h4>Transaction history</h4>
</div>
<div class="dbicon dbicon2">
<i class="material-icons">reply</i>
<h4>Talk to us</h4>
</div>
<div class="dbicon dbicon3">
<i class="material-icons">email</i>
<h4>Messages</h4>
</div>
<div class="dbicon dbicon4">
<i class="material-icons">settings</i>
<h4>Settings</h4>
</div>
</div>
</div>
<!--Transaction page-->
<div class="transact">
<h1>TRANSACTION PAGE</h1>
<div class="amtdiv">
<div class="bind">
<h3 class="trsword">Your Account Balance : N</h3>
<div class="trsdisamt">N </div>
</div>
<input
type="number"
id="trsamtbox"
placeholder="Enter the amount here"
/>
<div class="trsbtns">
<button class="witbtn">Withdraw</button>
<button class="depbtn">Deposit</button>
<button class="bakbtn"><< Back</button>
</div>
</div>
<div class="history">
<p>Transaction history</p>
<div class="title"><span>DATE</span><Span>TYPE</Span><span>AMOUNT</span> <span>BALANCE</span></div>
<!-- ul to display transactions -->
<ul>
<!-- Transaction history will appear here -->
</ul>
</div>
</div>
<!--footer-->
<div class="footer">
Secure login by WEDGE-TECH | All rights reserved 2021
</div>
<script src="main.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>