|
|
|
@@ -23,6 +23,7 @@ import { lazy } from 'react'; |
|
|
|
import { notifyActionError } from 'utils/CommonFunction'; |
|
|
|
import axios from "axios"; |
|
|
|
import {FormattedMessage, useIntl} from "react-intl"; |
|
|
|
import usePageTitle from "components/usePageTitle"; |
|
|
|
const CustomFormWizard = Loadable(lazy(() => import('./auth-forms/CustomFormWizard'))); |
|
|
|
const AuthWrapper = Loadable(lazy(() => import('./AuthWrapperCustom'))); |
|
|
|
// ================================|| REGISTER ||================================ // |
|
|
|
@@ -35,6 +36,8 @@ const Register = () => { |
|
|
|
const [base64Url, setBase64Url] = useState("") |
|
|
|
const [checkCode, setCheckCode] = useState("") |
|
|
|
const intl = useIntl(); |
|
|
|
// Localized document title/meta for register flow |
|
|
|
usePageTitle("register"); |
|
|
|
const steps = [ |
|
|
|
intl.formatMessage({id: 'personalInformation'}), |
|
|
|
intl.formatMessage({id: 'preview'}), |
|
|
|
|