Moved loginform to admin folder
This commit is contained in:
66
client/app/components/admin/LoginForm/LoginForm.jsx
Normal file
66
client/app/components/admin/LoginForm/LoginForm.jsx
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
import React, { Component } from 'react';
|
||||||
|
import { connect } from 'react-redux';
|
||||||
|
import { login } from '../../redux/reducer.jsx';
|
||||||
|
|
||||||
|
class LoginForm extends Component {
|
||||||
|
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
this.state = {};
|
||||||
|
this.onSubmit = this.onSubmit.bind(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
let {email, password} = this.state;
|
||||||
|
let {isLoginPending, isLoginSuccess, loginError} = this.props;
|
||||||
|
return (
|
||||||
|
<form name="loginForm" onSubmit={this.onSubmit}>
|
||||||
|
<div className="form-group-collection">
|
||||||
|
<div className="form-group">
|
||||||
|
<label>Email:</label>
|
||||||
|
<input type="" name="email" onChange={e => this.setState({email: e.target.value})} value={email}/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="form-group">
|
||||||
|
<label>Password:</label>
|
||||||
|
<input type="password" name="password" onChange={e => this.setState({password: e.target.value})} value={password}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input type="submit" value="Login" />
|
||||||
|
|
||||||
|
<div className="message">
|
||||||
|
{ isLoginPending && <div>Please wait...</div> }
|
||||||
|
{ isLoginSuccess && <div>Success.</div> }
|
||||||
|
{ loginError && <div>{loginError.message}</div> }
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
onSubmit(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
let { email, password } = this.state;
|
||||||
|
this.props.login(email, password);
|
||||||
|
this.setState({
|
||||||
|
email: '',
|
||||||
|
password: ''
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const mapStateToProps = (state) => {
|
||||||
|
return {
|
||||||
|
isLoginPending: state.isLoginPending,
|
||||||
|
isLoginSuccess: state.isLoginSuccess,
|
||||||
|
loginError: state.loginError
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const mapDispatchToProps = (dispatch) => {
|
||||||
|
return {
|
||||||
|
login: (email, password) => dispatch(login(email, password))
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export default connect(mapStateToProps, mapDispatchToProps)(LoginForm);
|
||||||
Reference in New Issue
Block a user