fix login design
This commit is contained in:
parent
6d35886eae
commit
7a973bf141
@ -253,6 +253,7 @@ const LoginPage = () => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<Box>
|
||||
<TextInput
|
||||
autoFocus
|
||||
name="username"
|
||||
@ -265,6 +266,8 @@ const LoginPage = () => {
|
||||
className="input"
|
||||
validate={required()}
|
||||
/>
|
||||
</Box>
|
||||
<Box>
|
||||
<PasswordInput
|
||||
name="password"
|
||||
component={renderInput}
|
||||
@ -276,6 +279,8 @@ const LoginPage = () => {
|
||||
className="input"
|
||||
validate={required()}
|
||||
/>
|
||||
</Box>
|
||||
<Box>
|
||||
<TextInput
|
||||
name="base_url"
|
||||
component={renderInput}
|
||||
@ -286,6 +291,7 @@ const LoginPage = () => {
|
||||
className="input"
|
||||
validate={[required(), validateBaseUrl]}
|
||||
/>
|
||||
</Box>
|
||||
<Box className="serverVersion">{serverVersion}</Box>
|
||||
</>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user