mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-12 16:29:01 +05:30
49 lines
1.6 KiB
TypeScript
49 lines
1.6 KiB
TypeScript
import React, { ComponentType, MouseEventHandler } from 'react';
|
||
import { FormattedMessage as Message } from 'react-intl';
|
||
import { ScrollIntoView } from 'app/components/ui/scroll';
|
||
import styles from 'app/components/profile/profileForm.scss';
|
||
import icons from 'app/components/ui/icons.scss';
|
||
|
||
import mfaStyles from './mfa.scss';
|
||
|
||
interface Props {
|
||
onProceed?: MouseEventHandler<HTMLAnchorElement>;
|
||
}
|
||
|
||
const MfaStatus: ComponentType<Props> = ({ onProceed }) => (
|
||
<div className={styles.formBody}>
|
||
<ScrollIntoView />
|
||
|
||
<div className={styles.formRow}>
|
||
<div className={mfaStyles.bigIcon}>
|
||
<span className={icons.lock} />
|
||
</div>
|
||
<p className={mfaStyles.mfaTitle}>
|
||
<Message
|
||
key="mfaEnabledForYourAcc"
|
||
defaultMessage="Two‑factor authentication for your account is active now"
|
||
/>
|
||
</p>
|
||
</div>
|
||
|
||
<div className={styles.formRow}>
|
||
<p className={styles.description}>
|
||
<Message
|
||
key="mfaLoginFlowDesc"
|
||
defaultMessage="Additional code will be requested next time you log in. Please note, that Minecraft authorization won't work when two‑factor auth is enabled."
|
||
/>
|
||
</p>
|
||
</div>
|
||
|
||
<div className={`${styles.formRow} ${mfaStyles.disableMfa}`}>
|
||
<p className={styles.description}>
|
||
<a href="#" onClick={onProceed}>
|
||
<Message key="disable" defaultMessage="Disable" />
|
||
</a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
);
|
||
|
||
export default MfaStatus;
|