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