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:
Eduardo Quiros 2022-08-03 22:37:24 -06:00
parent 5981b25881
commit 8c538ea8e7
No known key found for this signature in database
GPG Key ID: B77F36C3F12720B4
1 changed files with 2 additions and 2 deletions

View File

@ -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} />