Skip to content

Commit ada3ebd

Browse files
committed
Update LoanInputForm.jsx
1 parent eac125d commit ada3ebd

File tree

1 file changed

+20
-13
lines changed

1 file changed

+20
-13
lines changed

app/components/LoanInputForm.jsx

+20-13
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ function LoanInputForm({ onLoanSubmit, onCalculateEMI }) {
88
const [principal, setPrincipal] = useState('');
99
const [downPayment, setDownPayment] = useState('');
1010
const [prePayment, setprePayment] = useState('');
11+
const bankNames = ['SBI', 'HDFC', 'Axis', 'ICICI', 'PNB', 'LIC', 'Citibank', 'Others'];
1112

1213
const handleSubmit = (e) => {
1314
e.preventDefault();
@@ -38,6 +39,7 @@ function LoanInputForm({ onLoanSubmit, onCalculateEMI }) {
3839
annualInterestRate: parseFloat(interest),
3940
loanTenureYears: parseFloat(timePeriod),
4041
prePayment: parseFloat(prePayment || 0),
42+
bankName: bankName,
4143
};
4244
onCalculateEMI(loanParams);
4345
};
@@ -46,18 +48,23 @@ function LoanInputForm({ onLoanSubmit, onCalculateEMI }) {
4648
<div className="loan-input-form">
4749
<h2 className="text-xl font-semibold mb-4 text-gray-100">Enter Loan Details</h2>
4850
<form onSubmit={handleSubmit}>
49-
<div className="mb-4">
50-
<label htmlFor="bankName" className="block text-gray-300 text-sm font-bold mb-2">Bank Name:</label>
51-
<input
52-
type="text"
53-
id="bankName"
54-
value={bankName}
55-
onChange={(e) => setBankName(e.target.value)}
56-
required
57-
className="shadow appearance-none border rounded w-full py-2 px-3 leading-tight focus:outline-none focus:shadow-outline bg-gray-700 text-white border-gray-600 focus:ring-blue-500 focus:border-blue-500"
58-
placeholder="Bank Name"
59-
/>
60-
</div>
51+
<div className="mb-4">
52+
<label htmlFor="bankName" className="block text-gray-300 text-sm font-bold mb-2">Bank Name:</label>
53+
<select
54+
id="bankName"
55+
value={bankName}
56+
onChange={(e) => setBankName(e.target.value)}
57+
required
58+
className="shadow appearance-none border rounded w-full py-2 px-3 leading-tight focus:outline-none focus:shadow-outline bg-gray-700 text-white border-gray-600 focus:ring-blue-500 focus:border-blue-500"
59+
>
60+
<option value="">Select Bank</option>
61+
{bankNames.map((bank) => (
62+
<option key={bank} value={bank}>
63+
{bank}
64+
</option>
65+
))}
66+
</select>
67+
</div>
6168
<div className="mb-4">
6269
<label htmlFor="location" className="block text-gray-300 text-sm font-bold mb-2">Location:</label>
6370
<input
@@ -118,7 +125,7 @@ function LoanInputForm({ onLoanSubmit, onCalculateEMI }) {
118125
/>
119126
</div>
120127
<div className="mb-4">
121-
<label htmlFor="downPayment" className="block text-gray-300 text-sm font-bold mb-2">Down Payment:</label>
128+
<label htmlFor="downPayment" className="block text-gray-300 text-sm font-bold mb-2">Pre Payment:</label>
122129
<input
123130
type="number"
124131
id="prePayment"

0 commit comments

Comments
 (0)