Update login header text

This commit is contained in:
J. Ryan Stinnett 2019-01-23 12:10:25 -06:00
parent 3503562162
commit 2f89af4fa0
3 changed files with 11 additions and 11 deletions

View file

@ -544,8 +544,6 @@ module.exports = React.createClass({
delayTimeMs={1000} />;
}
const header = <h2>{ _t('Sign in') } { loader }</h2>;
let errorTextSection;
if (errorText) {
errorTextSection = (
@ -559,7 +557,10 @@ module.exports = React.createClass({
<AuthPage>
<AuthHeader />
<AuthBody>
{ header }
<h2>
{_t('Sign in to your account')}
{loader}
</h2>
{ errorTextSection }
{ this.componentForStep(this.state.currentFlow) }
{ serverConfig }