This repository has been archived by the owner on Sep 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoanTypeReport.jsp
41 lines (40 loc) · 1.67 KB
/
LoanTypeReport.jsp
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
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form id="ReportForm" name="ReportForm" action="LoanTypeReportController" method="post">
<p> Generate Loan Report</p>
<p>
Type of Loan
<select id="SelectLoan" name="D1">
<option>Mortgage</option>
<option>Personal</option>
<option>Auto</option>
<option>Business</option>
</select>
</p>
<p>
Start Date: Month
<input id="StartMonth" class="auto-style1" type="text" /> Day
<input id="StartDay" class="auto-style1" type="text" /> Year
<input id="StartYear" class="auto-style1" type="text" />
</p>
<p>
To
</p>
<p>
End Date: Month <input id="EndMonth" class="auto-style1" type="text" /> Day
<input id="EndDay" class="auto-style1" type="text" /> Year
<input id="EndYear" class="auto-style1" type="text" />
</p>
<p>
<input id="Button1" type="submit" value="Make Report" />
</p>
</form>
</body>
</html>