41 lines
1.1 KiB
TypeScript
Raw Normal View History

2017-07-22 18:57:38 +03:00
import React from 'react';
import { FormattedMessage as Message } from 'react-intl';
import { Input, Form, FormModel } from 'app/components/ui/form';
2017-07-22 18:57:38 +03:00
import profileForm from 'app/components/profile/profileForm.scss';
2017-07-22 18:57:38 +03:00
import messages from '../MultiFactorAuth.intl.json';
export default function Confirmation({
form,
formRef = () => {},
onSubmit,
onInvalid,
2017-07-22 18:57:38 +03:00
}: {
2019-12-07 13:28:52 +02:00
form: FormModel;
formRef?: (el: Form | null) => void;
onSubmit: (form: FormModel) => Promise<void>;
onInvalid: () => void;
2017-07-22 18:57:38 +03:00
}) {
return (
<Form form={form} onSubmit={onSubmit} onInvalid={onInvalid} ref={formRef}>
<div className={profileForm.formBody}>
<div className={profileForm.formRow}>
<p className={profileForm.description}>
<Message {...messages.enterCodeFromApp} />
</p>
</div>
2017-07-22 18:57:38 +03:00
<div className={profileForm.formRow}>
<Input
{...form.bindField('totp')}
required
autoComplete="off"
skin="light"
placeholder={messages.codePlaceholder}
/>
</div>
</div>
</Form>
);
2017-07-22 18:57:38 +03:00
}