@@ -8,6 +8,7 @@ function LoanInputForm({ onLoanSubmit, onCalculateEMI }) {
8
8
const [ principal , setPrincipal ] = useState ( '' ) ;
9
9
const [ downPayment , setDownPayment ] = useState ( '' ) ;
10
10
const [ prePayment , setprePayment ] = useState ( '' ) ;
11
+ const bankNames = [ 'SBI' , 'HDFC' , 'Axis' , 'ICICI' , 'PNB' , 'LIC' , 'Citibank' , 'Others' ] ;
11
12
12
13
const handleSubmit = ( e ) => {
13
14
e . preventDefault ( ) ;
@@ -38,6 +39,7 @@ function LoanInputForm({ onLoanSubmit, onCalculateEMI }) {
38
39
annualInterestRate : parseFloat ( interest ) ,
39
40
loanTenureYears : parseFloat ( timePeriod ) ,
40
41
prePayment : parseFloat ( prePayment || 0 ) ,
42
+ bankName : bankName ,
41
43
} ;
42
44
onCalculateEMI ( loanParams ) ;
43
45
} ;
@@ -46,18 +48,23 @@ function LoanInputForm({ onLoanSubmit, onCalculateEMI }) {
46
48
< div className = "loan-input-form" >
47
49
< h2 className = "text-xl font-semibold mb-4 text-gray-100" > Enter Loan Details</ h2 >
48
50
< 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 >
61
68
< div className = "mb-4" >
62
69
< label htmlFor = "location" className = "block text-gray-300 text-sm font-bold mb-2" > Location:</ label >
63
70
< input
@@ -118,7 +125,7 @@ function LoanInputForm({ onLoanSubmit, onCalculateEMI }) {
118
125
/>
119
126
</ div >
120
127
< 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 >
122
129
< input
123
130
type = "number"
124
131
id = "prePayment"
0 commit comments