mirror of https://github.com/vector-im/riot-web
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
parent
b7cb16242b
commit
4c83d898bd
|
@ -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…
Reference in New Issue