aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth/Locked.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-05-06 19:06:00 -0500
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-05-06 19:06:00 -0500
commit4df01bf76dd0c19d29587571131555639bf2b844 (patch)
treef19565f06da9d6c796bd3962d6f28a4fcff0da63 /src/components/auth/Locked.js
parentRegenerate i18n file (diff)
downloadferdium-app-4df01bf76dd0c19d29587571131555639bf2b844.tar.gz
ferdium-app-4df01bf76dd0c19d29587571131555639bf2b844.tar.zst
ferdium-app-4df01bf76dd0c19d29587571131555639bf2b844.zip
Use components defined in the codebase; Extract some text for i18n purposes.
Diffstat (limited to 'src/components/auth/Locked.js')
-rw-r--r--src/components/auth/Locked.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/auth/Locked.js b/src/components/auth/Locked.js
index ac1bc4e8c..e09a7d540 100644
--- a/src/components/auth/Locked.js
+++ b/src/components/auth/Locked.js
@@ -7,6 +7,7 @@ import { defineMessages, injectIntl } from 'react-intl';
7import Form from '../../lib/Form'; 7import Form from '../../lib/Form';
8import Input from '../ui/Input'; 8import Input from '../ui/Input';
9import Button from '../ui/Button'; 9import Button from '../ui/Button';
10import { H1 } from '../ui/headline';
10import { isMac } from '../../environment'; 11import { isMac } from '../../environment';
11 12
12import { globalError as globalErrorPropType } from '../../prop-types'; 13import { globalError as globalErrorPropType } from '../../prop-types';
@@ -100,7 +101,7 @@ class Locked extends Component {
100 <div className="auth__container"> 101 <div className="auth__container">
101 <form className="franz-form auth__form" onSubmit={e => this.submit(e)}> 102 <form className="franz-form auth__form" onSubmit={e => this.submit(e)}>
102 <img src="./assets/images/logo.svg" className="auth__logo" alt="" /> 103 <img src="./assets/images/logo.svg" className="auth__logo" alt="" />
103 <h1>{intl.formatMessage(messages.headline)}</h1> 104 <H1>{intl.formatMessage(messages.headline)}</H1>
104 105
105 {touchIdEnabled && ( 106 {touchIdEnabled && (
106 <> 107 <>