mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-10 01:52:04 +05:30
38 lines
871 B
TypeScript
38 lines
871 B
TypeScript
import React from 'react';
|
|
import { FormattedMessage as Message } from 'react-intl';
|
|
import { PanelIcon } from 'app/components/ui/Panel';
|
|
import { Input } from 'app/components/ui/form';
|
|
import BaseAuthBody from 'app/components/auth/BaseAuthBody';
|
|
|
|
import styles from './mfa.scss';
|
|
import messages from './Mfa.intl.json';
|
|
|
|
export default class MfaBody extends BaseAuthBody {
|
|
static panelId = 'mfa';
|
|
static hasGoBack = true;
|
|
|
|
autoFocusField = 'totp';
|
|
|
|
render() {
|
|
return (
|
|
<div>
|
|
{this.renderErrors()}
|
|
|
|
<PanelIcon icon="lock" />
|
|
|
|
<p className={styles.descriptionText}>
|
|
<Message {...messages.description} />
|
|
</p>
|
|
|
|
<Input
|
|
{...this.bindField('totp')}
|
|
icon="key"
|
|
required
|
|
placeholder={messages.enterTotp}
|
|
autoComplete="off"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|