loanResult.jsp

 avatar
unknown
plain_text
5 months ago
700 B
1
Indexable
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Loan Application Result</title>
</head>
<body>

<h1>Loan Application Result</h1>

<p>Application Status: <%= request.getAttribute("applicationStatus") %></p>
<p>Loan Amount Approved: RM <%= request.getAttribute("loanAmountApproved") %></p>
<p>Interest Rate: <%= request.getAttribute("interestRate") %> %</p>
<p>Monthly Payment: RM <%= request.getAttribute("monthlyPayment") %></p>
<p>Debt Service Ratio (DSR): <%= request.getAttribute("DSR") %> %</p>

<a href="loanAppl.jsp">Apply for another loan</a>

</body>
</html>
Editor is loading...
Leave a Comment