fix password form field id
Initially, it was set to "identificacion", which conflicted with another field with the same name.
This commit is contained in:
parent
5981b25881
commit
8c538ea8e7
|
@ -95,11 +95,11 @@ const Inquilinos = () => {
|
|||
/>
|
||||
</div>
|
||||
<div className='field col-12 md:col-6'>
|
||||
<label htmlFor='identificacion'>Identificación</label>
|
||||
<label htmlFor='password'>Password</label>
|
||||
<InputText
|
||||
type='password'
|
||||
className='form-control'
|
||||
id='identificacion'
|
||||
id='password'
|
||||
/>
|
||||
</div>
|
||||
<Button label='Registrar' onClick={finalizarRegistro} />
|
||||
|
|
Loading…
Reference in New Issue