mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
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
@ -505,14 +505,9 @@ module.exports = React.createClass({
|
||||
errorText = <div className="mx_Login_error">{ err }</div>;
|
||||
}
|
||||
|
||||
let signIn;
|
||||
if (!this.state.doingUIAuth) {
|
||||
signIn = (
|
||||
<a className="mx_AuthBody_changeFlow" onClick={this.onLoginClick} href="#">
|
||||
{ _t('Sign in instead') }
|
||||
</a>
|
||||
);
|
||||
}
|
||||
const signIn = <a className="mx_AuthBody_changeFlow" onClick={this.onLoginClick} href="#">
|
||||
{ _t('Sign in instead') }
|
||||
</a>;
|
||||
|
||||
return (
|
||||
<AuthPage>
|
||||
|
Loading…
Reference in New Issue
Block a user