diff --git a/src/components/structures/login/Login.js b/src/components/structures/login/Login.js
index 44363d83ad..789b066074 100644
--- a/src/components/structures/login/Login.js
+++ b/src/components/structures/login/Login.js
@@ -346,12 +346,15 @@ module.exports = React.createClass({
}
let returnToAppJsx;
- if (this.props.onCancelClick && theme !== 'status') {
+ /*
+ // with the advent of ILAG I don't think we need this any more
+ if (this.props.onCancelClick) {
returnToAppJsx =
{ _t('Return to app') }
;
}
+ */
let serverConfig;
let header;
diff --git a/src/components/structures/login/Registration.js b/src/components/structures/login/Registration.js
index 4e95b62be3..5634c28197 100644
--- a/src/components/structures/login/Registration.js
+++ b/src/components/structures/login/Registration.js
@@ -382,6 +382,8 @@ module.exports = React.createClass({
}
let returnToAppJsx;
+ /*
+ // with the advent of ILAG I don't think we need this any more
if (this.props.onCancelClick) {
returnToAppJsx = (
@@ -389,6 +391,7 @@ module.exports = React.createClass({
);
}
+ */
let header;
let errorText;
@@ -402,6 +405,15 @@ module.exports = React.createClass({
}
}
+ let signIn;
+ if (!this.state.doingUIAuth) {
+ signIn = (
+
+ { theme === 'status' ? _t('Sign in') : _t('I already have an account') }
+
+ );
+ }
+
return (