forked from ddrilling/asb_cloud_front
Страница отсутствия доступа изменена
This commit is contained in:
parent
c428d51b06
commit
b97066af6e
@ -1,18 +1,43 @@
|
|||||||
|
import { Result, Tooltip, Typography } from 'antd'
|
||||||
import { memo } from 'react'
|
import { memo } from 'react'
|
||||||
import { Link } from 'react-router-dom'
|
import { Link, useHistory } from 'react-router-dom'
|
||||||
|
import { CloseCircleOutlined } from '@ant-design/icons'
|
||||||
|
|
||||||
export const AccessDenied = memo(() => (
|
const { Paragraph, Text } = Typography
|
||||||
<div style={{
|
|
||||||
width: '100vw',
|
export const AccessDenied = memo(() => {
|
||||||
height: '100vh',
|
const history = useHistory()
|
||||||
display: 'flex',
|
|
||||||
flexDirection: 'column',
|
return (
|
||||||
justifyContent: 'center',
|
<Result
|
||||||
alignItems: 'center'
|
status={'error'}
|
||||||
}}>
|
title={'Доступ запрешён'}
|
||||||
<h2>Доступ запрещён</h2>
|
subTitle={'Страницы не существует или у вас отсутствует к ней доступ.'}
|
||||||
<Link to={'/login'}>На страницу входа</Link>
|
>
|
||||||
</div>
|
<div className={'desc'}>
|
||||||
))
|
<Paragraph>
|
||||||
|
<Text strong style={{ fontSize: 16 }}>Возможные причины данной проблемы:</Text>
|
||||||
|
</Paragraph>
|
||||||
|
<Paragraph>
|
||||||
|
<CloseCircleOutlined style={{ color: 'red' }} />
|
||||||
|
У вас отсутствует доступ к странице.
|
||||||
|
<Typography.Link href={'mailto://support@digitaldrilling.ru'} target={'_blank'}>
|
||||||
|
Обратиться в поддержку >
|
||||||
|
</Typography.Link>
|
||||||
|
</Paragraph>
|
||||||
|
<Paragraph>
|
||||||
|
<CloseCircleOutlined style={{ color: 'red' }} />
|
||||||
|
Страницы не существует.
|
||||||
|
<Link to={'#'} onClick={history.goBack}>Вернуться назад ></Link>
|
||||||
|
</Paragraph>
|
||||||
|
<Paragraph>
|
||||||
|
<CloseCircleOutlined style={{ color: 'red' }} />
|
||||||
|
Разрешения не обновились.
|
||||||
|
<Link to={'/login'}>Перезайти в аккаунт ></Link>
|
||||||
|
</Paragraph>
|
||||||
|
</div>
|
||||||
|
</Result>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
export default AccessDenied
|
export default AccessDenied
|
||||||
|
Loading…
Reference in New Issue
Block a user