1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-20 16:22:28 +03:00

Rename LoginPage, Header, Footer views to Auth*

This commit is contained in:
J. Ryan Stinnett
2019-01-21 18:33:17 -06:00
parent c7354f483b
commit 3bd765f63f
12 changed files with 126 additions and 73 deletions

View File

@@ -60,12 +60,12 @@ module.exports = React.createClass({
render: function() {
const ChangeDisplayName = sdk.getComponent('settings.ChangeDisplayName');
const ChangeAvatar = sdk.getComponent('settings.ChangeAvatar');
const LoginPage = sdk.getComponent('auth.LoginPage');
const LoginHeader = sdk.getComponent('auth.LoginHeader');
const AuthPage = sdk.getComponent('auth.AuthPage');
const AuthHeader = sdk.getComponent('auth.AuthHeader');
return (
<LoginPage>
<AuthPage>
<div className="mx_Login_box">
<LoginHeader />
<AuthHeader />
<div className="mx_Login_profile">
{ _t('Set a display name:') }
<ChangeDisplayName />
@@ -76,7 +76,7 @@ module.exports = React.createClass({
{ this.state.errorString }
</div>
</div>
</LoginPage>
</AuthPage>
);
},
});