-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransfer.html
60 lines (46 loc) · 2.14 KB
/
transfer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>virtuBank: Most trusted online banking platform</title>
<!-- favicon -->
<link rel="shortcut icon" href="favico.png" type="image/x-icon">
<!-- stylesheets -->
<link rel="stylesheet" href="css/utilities.css">
<link rel="stylesheet" href="css/transfer.css">
<!-- media queries -->
<link rel="stylesheet" href="media queries/transfer-media.css">
<!-- google font's -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap" rel="stylesheet">
</head>
<body>
<header class="container">
<div class="header">
<div class="logo b"><a href="dashboard.html">VirtuBank</a></div>
</div>
</header>
<div class="container">
<a href="dashboard.html" class="back">back</a>
</div>
<main class="main-container">
<div class="container-transfer">
<h1 class="main-heading">Transfer Money</h1>
<form class="transfer-form grid grid-col-1 gap-sm">
<label for="receiver">Receiver Full Name: </label>
<input type="text" name="receiver" id="receiver" placeholder="e.g. Jane Doe">
<label for="rec-act-no">Receiver Account No: </label>
<input type="number" name="rec-act" id="rec-act-no" placeholder="e.g. 0112345678">
<label for="ifsc">IFSC: </label>
<input type="text" name="ifsc" id="ifsc" placeholder="e.g. VB001234">
<label for="amount">Amount: </label>
<input type="number" name="amount" id="amount" placeholder="e.g. 15000">
<button type="submit" id="transfer-btn">send</button>
</form>
</div>
</main>
<script src="scripts/transfer.js"></script>
</body>
</html>