1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/components/signup_container.js

60 lines
1.4 KiB
JavaScript
Raw Normal View History

2015-06-20 16:43:18 +02:00
'use strict';
import React from 'react';
import { Link } from 'react-router';
2015-07-13 16:57:25 +02:00
import SignupForm from './ascribe_forms/form_signup';
2015-06-20 16:43:18 +02:00
import { getLangText } from '../utils/lang_utils';
import { setDocumentTitle } from '../utils/dom_utils';
2015-06-20 16:43:18 +02:00
2015-06-22 10:50:22 +02:00
let SignupContainer = React.createClass({
propTypes: {
location: React.PropTypes.object
},
getInitialState() {
2015-07-13 16:57:25 +02:00
return {
2015-06-22 10:50:22 +02:00
submitted: false,
message: null
2015-07-13 16:57:25 +02:00
};
},
2015-06-22 10:50:22 +02:00
handleSuccess(message){
this.setState({
submitted: true,
message: message
});
},
2015-06-20 16:43:18 +02:00
render() {
setDocumentTitle(getLangText('Sign up'));
2015-06-22 10:50:22 +02:00
if (this.state.submitted){
return (
<div className="ascribe-login-wrapper">
<br/>
<div className="ascribe-login-text ascribe-login-header">
2015-07-13 21:09:39 +02:00
{this.state.message}
2015-06-22 10:50:22 +02:00
</div>
</div>
);
}
2015-06-20 16:43:18 +02:00
return (
<div className="ascribe-login-wrapper">
<SignupForm
handleSuccess={this.handleSuccess}
location={this.props.location}/>
<div className="ascribe-login-text">
{getLangText('Already an ascribe user')}&#63; <Link to="/login">{getLangText('Log in')}...</Link><br/>
</div>
2015-06-20 16:43:18 +02:00
</div>
2015-06-20 16:43:18 +02:00
);
}
});
2015-07-13 16:57:25 +02:00
export default SignupContainer;