Show link to login even during UI auth

This gives users an escape hatch in case something goes wrong with the UI auth
step, and they'd like to go somewhere else in the auth process.
pull/21833/head
J. Ryan Stinnett 2019-02-19 13:10:10 +00:00
parent b7cb16242b
commit 4c83d898bd
1 changed files with 3 additions and 8 deletions

View File

@ -505,14 +505,9 @@ module.exports = React.createClass({
errorText = <div className="mx_Login_error">{ err }</div>; errorText = <div className="mx_Login_error">{ err }</div>;
} }
let signIn; const signIn = <a className="mx_AuthBody_changeFlow" onClick={this.onLoginClick} href="#">
if (!this.state.doingUIAuth) { { _t('Sign in instead') }
signIn = ( </a>;
<a className="mx_AuthBody_changeFlow" onClick={this.onLoginClick} href="#">
{ _t('Sign in instead') }
</a>
);
}
return ( return (
<AuthPage> <AuthPage>