Implemented /auth/error path
This commit is contained in:
23
frontend/scenes/ErrorAuth/ErrorAuth.js
Normal file
23
frontend/scenes/ErrorAuth/ErrorAuth.js
Normal file
@@ -0,0 +1,23 @@
|
||||
import React from 'react';
|
||||
import { Link } from 'react-router';
|
||||
|
||||
import Layout from 'components/Layout';
|
||||
import CenteredContent from 'components/CenteredContent';
|
||||
|
||||
class ErrorAuth extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<Layout
|
||||
titleText="Not Found"
|
||||
>
|
||||
<CenteredContent>
|
||||
<h1>Authentication failed</h1>
|
||||
|
||||
<p>We were unable to log you in. <Link to="/">Please try again.</Link></p>
|
||||
</CenteredContent>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default ErrorAuth;
|
||||
Reference in New Issue
Block a user