forked from ddrilling/asb_cloud_front
Исправлена загрузка на странице входа
This commit is contained in:
parent
8107a4a3a5
commit
b94561aa62
@ -32,29 +32,31 @@ export const Login = memo(() => {
|
||||
), [history, location])
|
||||
|
||||
return (
|
||||
<LoaderPortal show={showLoader} className={'loader-container login_page shadow'}>
|
||||
<div className={'login_page shadow'}>
|
||||
<div style={{ display: 'flex', flexDirection: 'column' }}>
|
||||
<Logo style={{ marginBottom: '10px' }}/>
|
||||
<Card title={'Система мониторинга'} className={'shadow'} bordered={true} style={{ width: 350 }}>
|
||||
<Form onFinish={handleLogin}>
|
||||
<Form.Item name={'login'} rules={loginRules}>
|
||||
<Input placeholder={'Пользователь'} prefix={<UserOutlined />} />
|
||||
</Form.Item>
|
||||
<Form.Item name={'password'} rules={passwordRules}>
|
||||
<Input.Password placeholder={'Пароль'} prefix={<LockOutlined />} />
|
||||
</Form.Item>
|
||||
<Form.Item>
|
||||
<div className={'login-button'}>
|
||||
<Button type={'primary'} htmlType={'submit'}>Вход</Button>
|
||||
<LoaderPortal show={showLoader}>
|
||||
<Card title={'Система мониторинга'} className={'shadow'} bordered={true} style={{ width: 350 }}>
|
||||
<Form onFinish={handleLogin}>
|
||||
<Form.Item name={'login'} rules={loginRules}>
|
||||
<Input placeholder={'Пользователь'} prefix={<UserOutlined />} />
|
||||
</Form.Item>
|
||||
<Form.Item name={'password'} rules={passwordRules}>
|
||||
<Input.Password placeholder={'Пароль'} prefix={<LockOutlined />} />
|
||||
</Form.Item>
|
||||
<Form.Item>
|
||||
<div className={'login-button'}>
|
||||
<Button type={'primary'} htmlType={'submit'}>Вход</Button>
|
||||
</div>
|
||||
</Form.Item>
|
||||
<div className={'text-align-center'}>
|
||||
<Link to={`/register`}>Отправить заявку на регистрацию</Link>
|
||||
</div>
|
||||
</Form.Item>
|
||||
<div className={'text-align-center'}>
|
||||
<Link to={`/register`}>Отправить заявку на регистрацию</Link>
|
||||
</div>
|
||||
</Form>
|
||||
</Card>
|
||||
</Form>
|
||||
</Card>
|
||||
</LoaderPortal>
|
||||
</div>
|
||||
</LoaderPortal>
|
||||
</div>
|
||||
)
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user