TP 용 pav
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

2 years ago
import { Button } from 'reactstrap'
import { Link } from 'react-router-dom'
import notAuthImg from '@src/assets/images/pages/not-authorized.svg'
import '@styles/base/pages/page-misc.scss'
const NotAuthorized = () => {
return (
<div className='misc-wrapper'>
<a className='brand-logo' href='/'>
<img src={logoImg} width="50"/>
<h2 className='brand-text text-primary ml-1'>Drone Control System</h2>
</a>
<div className='misc-inner p-2 p-sm-3'>
<div className='w-100 text-center'>
<h2 className='mb-1'>You are not authorized! 🔐</h2>
<p className='mb-2'>
The Webtrends Marketing Lab website in IIS uses the default IUSR account credentials to access the web pages
it serves.
</p>
<Button.Ripple tag={Link} to='/pages/login-v2' color='primary' className='btn-sm-block mb-1'>
Back to login
</Button.Ripple>
<img className='img-fluid' src={notAuthImg} alt='Not authorized page' />
</div>
</div>
</div>
)
}
export default NotAuthorized