diff --git a/src/components/structures/login/Login.js b/src/components/structures/login/Login.js
index 321084389b..6206b7660d 100644
--- a/src/components/structures/login/Login.js
+++ b/src/components/structures/login/Login.js
@@ -1,7 +1,7 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
-Copyright 2018 New Vector Ltd
+Copyright 2018, 2019 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -24,7 +24,6 @@ import { _t, _td } from '../../../languageHandler';
import sdk from '../../../index';
import Login from '../../../Login';
import SdkConfig from '../../../SdkConfig';
-import SettingsStore from "../../../settings/SettingsStore";
import { messageForResourceLimitError } from '../../../utils/ErrorUtils';
import { AutoDiscovery } from "matrix-js-sdk";
@@ -533,7 +532,6 @@ module.exports = React.createClass({
}
let serverConfig;
- let header;
if (!SdkConfig.get()['disable_custom_urls']) {
serverConfig = ;
}
- // FIXME: remove status.im theme tweaks
- const theme = SettingsStore.getValue("theme");
- if (theme !== "status") {
- header =
{ _t('Sign in') } { loader }
;
- } else {
- if (!errorText) {
- header = { _t('Sign in to get started') } { loader }
;
- }
- }
+ const header = { _t('Sign in') } { loader }
;
let errorTextSection;
if (errorText) {
diff --git a/src/components/structures/login/Registration.js b/src/components/structures/login/Registration.js
index fa5a02e881..74e3685bb5 100644
--- a/src/components/structures/login/Registration.js
+++ b/src/components/structures/login/Registration.js
@@ -1,7 +1,7 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2017 Vector Creations Ltd
-Copyright 2018 New Vector Ltd
+Copyright 2018, 2019 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -28,7 +28,6 @@ import RegistrationForm from '../../views/login/RegistrationForm';
import RtsClient from '../../../RtsClient';
import { _t, _td } from '../../../languageHandler';
import SdkConfig from '../../../SdkConfig';
-import SettingsStore from "../../../settings/SettingsStore";
import { messageForResourceLimitError } from '../../../utils/ErrorUtils';
const MIN_PASSWORD_LENGTH = 6;
@@ -404,8 +403,6 @@ module.exports = React.createClass({
const Spinner = sdk.getComponent("elements.Spinner");
const ServerConfig = sdk.getComponent('views.login.ServerConfig');
- const theme = SettingsStore.getValue("theme");
-
let registerBody;
if (this.state.doingUIAuth) {
registerBody = (
@@ -458,24 +455,18 @@ module.exports = React.createClass({
);
}
- let header;
let errorText;
- // FIXME: remove hardcoded Status team tweaks at some point
const err = this.state.errorText || this.props.defaultServerDiscoveryError;
- if (theme === 'status' && err) {
- header = { err }
;
- } else {
- header = { _t('Create an account') }
;
- if (err) {
- errorText = { err }
;
- }
+ const header = { _t('Create an account') }
;
+ if (err) {
+ errorText = { err }
;
}
let signIn;
if (!this.state.doingUIAuth) {
signIn = (
- { theme === 'status' ? _t('Sign in') : _t('I already have an account') }
+ { _t('I already have an account') }
);
}
diff --git a/src/components/views/login/LoginPage.js b/src/components/views/login/LoginPage.js
index 9eba53188e..83da8fa60b 100644
--- a/src/components/views/login/LoginPage.js
+++ b/src/components/views/login/LoginPage.js
@@ -1,5 +1,6 @@
/*
Copyright 2015, 2016 OpenMarket Ltd
+Copyright 2019 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -16,44 +17,16 @@ limitations under the License.
'use strict';
-import SettingsStore from "../../../settings/SettingsStore";
-
const React = require('react');
module.exports = React.createClass({
displayName: 'LoginPage',
render: function() {
- // FIXME: this should be turned into a proper skin with a StatusLoginPage component
- if (SettingsStore.getValue("theme") === 'status') {
- return (
-
-
-
-
-
-
-
Status Community Chat
-
-
- { this.props.children }
-
-
This channel is for our development community.
-
Interested in SNT and discussions on the cryptocurrency market?
-
Join Telegram Chat
-
-
-
- );
- } else {
- return (
-
- { this.props.children }
-
- );
- }
+ return (
+
+ { this.props.children }
+
+ );
},
});