-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (94 loc) · 4.36 KB
/
index.html
File metadata and controls
101 lines (94 loc) · 4.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, minimum-scale=1">
<title>PakPay</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
</head>
<body>
<div class="login-form">
<img class="logo" src="images/logo.png" alt="">
<div class="login-contents">
<input class="username" type="text" placeholder="username....">
<br>
<input class="password" type="password" placeholder="password....">
<br>
<div class="buttons">
<button>Login</button>
<button class="sign-up">Sign up</button>
</div>
</div>
<p></p>
</div>
<div class="application">
<header>
<div class="welcome-text">
Welcome! Mr. <span class="account-username">Dummy</span>
</div>
<img class="logo-app" src="images/logo.png" alt="">
<h2 class="logout">→ Log Out</h2>
</header>
<main>
<div class="db-info">
<div class="left-content">
<h1>Current Balance</h1>
<div class="date-info">As of <span class="date">12/42/12</span></div>
</div>
<div class="right-content">
<h1 class="current-balance">25,125$</h1>
</div>
</div>
<div class="container">
<div class="movements">
</div>
<aside>
<div class="action action-1">
<h1 class="action-about">Transfer Money</h1>
<input class="transfer-user" type="text" placeholder="Reciever's username">
<input class="transfer-amount" type="text" placeholder="amount">
<button class="transfer-btn">Transfer</button>
</div>
<div class=" action action-2">
<h1 class="action-about">Transact money</h1>
<select name="" id="">
<option value="Deposit">Deposit</option>
<option value="Withdraw">Withdraw</option>
</select>
<input class="transact-amount" type="text" placeholder="amount">
<button class="transact-btn">Transact</button>
</div>
<div class=" action action-3">
<h1 class="action-about">Request Loan</h1>
<input class="request-user" type="text" placeholder="username">
<input class="request-amount" type="text" placeholder="amount">
<button class="request-btn">Request</button>
</div>
<div class=" action action-4">
<h1 class="action-about">Close Account</h1>
<input class="close-user" type="text" placeholder="username">
<input class="close-pass" type="text" placeholder="password">
<button class="close-btn">Close</button>
</div>
</aside>
</div>
</main>
<footer-start style="margin-bottom:70px;">
<div class="acccount-balance-detail">
<div>Total Deposits: <br> <span class="totalProfit bold-me">12,301$</span> </div>
<div>Total Withdraws: <br> <span class="totalLoss bold-me">12,301$</span></div>
<div>Total loan:<br> <span class="totalLoan bold-me">12,301$</span></div>
</div>
<p class="logout-timer">You will be logged out in <span style="font-weight:bolder;">2:00</span> </p>
</footer-start>
<hr>
<footer style="text-align: center;padding: 80px">
©Copyright reserved by <span class="bold-me">Syed zaki haider</span>, Don't use this to teach or claim
as your own product or design, use it as your portfolio.
</footer>
</div>
<script src="js/script.js"> </script>
</body>
</html>