-
Notifications
You must be signed in to change notification settings - Fork 1
/
loanapply.html
43 lines (40 loc) · 1.17 KB
/
loanapply.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
<!DOCTYPE html>
<html>
<head>
<title>APPLY FOR LOANS!</title>
<link rel="stylesheet" href="loanapply.css">
</head>
<body>
<aside class = "left">
<nav>
<img src="log.jpg"/>
<a href="homepage.php" >Home</a>
<a href="accover.php">Account Overview</a>
<a href="showtransact.php" >View Statement</a>
<a href="payment.html" >Utility Payment</a>
<a href="custreq.html" >Service Request</a>
<a href="loanapply.html" class="active" >Apply for loan</a>
<a href="loanrepay.php" >Loan payment</a>
<a href="makefd.html">Make Fixed Deposit</a>
</nav>
</aside>
<h1>TYPES OF LOANS AVAILABLE</h1>
<section class="hello">
<ul>
<li>Student Loan @ 9%p.a.</li>
<li>Housing Loan @ 12%p.a<br></li>
<li>Car Loan @ 15%p.a.</li>
<li>Personal Loan @ 13%p.a</li>
</ul>
</section>
<div class="login-page">
<div class="form">
<form method="POST" id="form1" action="loanapply.php">
<input type="text" name="loan_amt" placeholder="ENTER THE LOAN AMOUNT"></input>
<input type="text" name="type" placeholder="ENTER LOAN TYPE"></input>
<button type="submit" form="form1" value="Submit">APPLY</button>
</form>
</div>
</div>
</body>
</html>