1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-14 18:26:26 +00:00
Files
Boostnote/browser/main/Containers/LoginContainer.jsx
2015-07-24 15:13:04 +09:00

57 lines
1.8 KiB
JavaScript

var React = require('react/addons')
var ReactRouter = require('react-router')
var Link = ReactRouter.Link
var AuthActions = require('../Actions/AuthActions')
var OnlyGuest = require('../Mixins/OnlyGuest')
module.exports = React.createClass({
mixins: [React.addons.LinkedStateMixin, ReactRouter.Navigation, OnlyGuest],
getInitialState: function () {
return {
email: '',
password: ''
}
},
handleSubmit: function (e) {
AuthActions.login({
email: this.state.email,
password: this.state.password
})
e.preventDefault()
},
render: function () {
return (
<div className='LoginContainer'>
<img className='logo' src='resources/favicon-230x230.png'/>
<nav className='authNavigator text-center'><Link to='login'>Log In</Link> / <Link to='register'>Sign Up</Link></nav>
<div className='socialControl'>
<p>Connect with</p>
<button className='facebookBtn'><i className='fa fa-facebook fa-fw'/></button>
<button className='githubBtn'><i className='fa fa-github fa-fw'/></button>
</div>
<div className='divider'>
<hr/>
<div className='dividerLabel'>or</div>
</div>
<form onSubmit={this.handleSubmit}>
<div className='form-group'>
<input className='stripInput' valueLink={this.linkState('email')} type='text' placeholder='E-mail'/>
</div>
<div className='form-group'>
<input className='stripInput' valueLink={this.linkState('password')} onChange={this.handleChange} type='password' placeholder='Password'/>
</div>
<div className='form-group'>
<button className='btn-primary' type='submit'>Log In</button>
</div>
</form>
</div>
)
}
})