43 lines
1.4 KiB
JavaScript
Executable File
43 lines
1.4 KiB
JavaScript
Executable File
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import {
|
|
EmptyLayout
|
|
} from './../../../components';
|
|
|
|
import { HeaderAuth } from "../../components/Pages/HeaderAuth";
|
|
import { FooterAuth } from "../../components/Pages/FooterAuth";
|
|
|
|
const Confirmation = () => (
|
|
<EmptyLayout>
|
|
<EmptyLayout.Section center>
|
|
{ /* START Header */}
|
|
<HeaderAuth
|
|
title="Confirm Your Email Address"
|
|
icon="envelope"
|
|
text={(
|
|
<React.Fragment>
|
|
The confirmation mail was sent to
|
|
<i>email@example.com</i> Check your mailbox
|
|
and hit the <strong>Confirm My Email</strong>
|
|
link to confirm your email address.
|
|
</React.Fragment>
|
|
)}
|
|
/>
|
|
{ /* END Header */}
|
|
{ /* START Bottom Links */}
|
|
<div className="text-center mb-5">
|
|
<Link to="/" className="text-decoration-none">
|
|
<i className="fa fa-angle-left mr-2"></i>Back to Home
|
|
</Link>
|
|
</div>
|
|
{ /* END Bottom Links */}
|
|
{ /* START Footer */}
|
|
<FooterAuth />
|
|
{ /* END Footer */}
|
|
</EmptyLayout.Section>
|
|
</EmptyLayout>
|
|
);
|
|
|
|
export default Confirmation;
|