implement login

This commit is contained in:
Matthew Hodgson 2015-07-19 03:19:37 +01:00
parent 1e1f7492d8
commit d239070adb
6 changed files with 139 additions and 30 deletions

View file

@ -129,7 +129,7 @@ module.exports = React.createClass({
case 'stage_m.login.recaptcha':
return (
<div ref="recaptchaContainer">
This Home Server would like to make sure you're not a robot
This Home Server would like to make sure you are not a robot
<div id="mx_recaptcha"></div>
</div>
);
@ -180,8 +180,13 @@ module.exports = React.createClass({
render: function() {
return (
<div className="mx_Register">
{this.registerContent()}
<div className="mx_Login">
<div className="mx_Login_box">
<div className="mx_Login_logo">
<img src="/img/logo.png" width="249" height="76" alt="vector"/>
</div>
{this.registerContent()}
</div>
</div>
);
}