Switch back to Input for username

This commit is contained in:
Tanner Collin 2022-01-22 00:29:24 +00:00
parent 68f9085b47
commit 25a3f72417

View File

@ -181,10 +181,15 @@ export function SignupForm(props) {
</Message>}
{!!genUsername() &&
<div className='field'>
<label>Username</label>
<p style={{background: 'yellow'}}>{genUsername()}</p>
</div>
<Form.Input
label='Username'
name='username'
value={genUsername()}
error={error.username}
readOnly
>
<input style={{ border: 'none' }}></input>
</Form.Input>
}
<Form.Input