add register button

pull/4352/head
Matthew Hodgson 2017-06-19 00:54:07 +01:00
parent 612cad5d9e
commit 1c82b7b0c3
2 changed files with 12 additions and 3 deletions

View File

@ -47,6 +47,10 @@ module.exports = React.createClass({
dis.dispatch({ action: 'start_login' });
},
onRegisterClick: function() {
dis.dispatch({ action: 'start_registration' });
},
render: function() {
var TintableSvg = sdk.getComponent('elements.TintableSvg');
@ -71,6 +75,9 @@ module.exports = React.createClass({
<AccessibleButton className="mx_LoginBox_loginButton" element="button" onClick={this.onLoginClick}>
{ _t("Login") }
</AccessibleButton>
<AccessibleButton className="mx_LoginBox_registerButton" element="button" onClick={this.onRegisterClick}>
{ _t("Register") }
</AccessibleButton>
</div>
);
}

View File

@ -19,13 +19,15 @@ limitations under the License.
width: 100%;
}
.mx_LoginBox_loginButton {
.mx_LoginBox_loginButton,
.mx_LoginBox_registerButton {
margin-top: -8px;
height: 40px;
border: 0px;
border-radius: 40px;
padding-left: 1em;
padding-right: 1em;
margin-left: 4px;
margin-right: 4px;
width: 80px;
background-color: $accent-color;
color: $primary-bg-color;