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>} </Message>}
{!!genUsername() && {!!genUsername() &&
<div className='field'> <Form.Input
<label>Username</label> label='Username'
<p style={{background: 'yellow'}}>{genUsername()}</p> name='username'
</div> value={genUsername()}
error={error.username}
readOnly
>
<input style={{ border: 'none' }}></input>
</Form.Input>
} }
<Form.Input <Form.Input