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.
This commit is contained in:
parent
b7cb16242b
commit
4c83d898bd
1 changed files with 3 additions and 8 deletions
|
@ -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>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue