-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredit.html
99 lines (79 loc) · 3.71 KB
/
credit.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
<!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/credit.css">
<!-- media queries -->
<link rel="stylesheet" href="media queries/credit-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>
<section class="no-credit-card">
<div class="screen-1 ">
<h1 class="main-heading">Apply for credit card to get loan instantly?</h1>
<button class="request-card" id="get-btn">Get card</button>
</div>
<div class="screen-2">
<h1 class="main-heading">Card request approved, click on continue to get card.</h1>
<button class="request-card " id="continue-btn">Continue</button>
</div>
</section>
<main class="grid grid-col-2">
<div class="container ">
<div class="card-container">
<section class="card-front">
<span class="logo b logo-card">VirtuBank</span>
<img src="images/chip.png" alt="chip" class="chip">
<img src="images/wifi.png" alt="wifi" class="wifi">
<div class="card-num-section">
<span class="num-1">0000</span>
<span class="num-2">0000</span>
<span class="num-3">0000</span>
<span class="num-4">0000</span>
</div>
<span class="cardholder">Jane Doe</span>
<span class="exp-date">00/00</span>
</section>
<section class="card-back">
<span class="cvc">000</span>
</section>
</div>
</div>
<div class="container container-form grid grid-col-1 gap-md">
<h1 class="main-heading">Get Loan</h1>
<form class="loan-form grid grid-col-1 gap-sm">
<label for="name">cardholder name :</label>
<input type="text" name="name" id="name" placeholder="e.g. Jane Doe">
<!-- 10 digits -->
<label for="account-no">Account No :</label>
<input type="number" name="account-no" id="account-no" placeholder="e.g. 0112345678">
<!-- 12 digits <bank name><code> -->
<label for="card-no">Credit Card No :</label>
<input type="number" name="card-no" id="card-no" placeholder="e.g. 0000000000000000">
<!-- 25% of current balance -->
<label for="amount">Loan Amount :</label>
<input type="number" name="amount" id="amount" placeholder="e.g. 10000">
<button type="submit" id="loanBtn">Get loan</button>
</form>
</div>
</main>
<script src="scripts/credit.js"> </script>
</body>
</html>