mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
bc3093d4d7
- also make some changes to signup form
70 lines
1.8 KiB
JavaScript
70 lines
1.8 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import { Link } from 'react-router';
|
|
|
|
import SignupForm from './ascribe_forms/form_signup';
|
|
|
|
import { getLangText } from '../utils/lang_utils';
|
|
import { setDocumentTitle } from '../utils/dom_utils';
|
|
|
|
|
|
let SignupContainer = React.createClass({
|
|
propTypes: {
|
|
// Provided from AscribeApp
|
|
currentUser: React.PropTypes.object,
|
|
whitelabel: React.PropTypes.object,
|
|
|
|
// Provided from router
|
|
location: React.PropTypes.object
|
|
},
|
|
|
|
getInitialState() {
|
|
return {
|
|
submitted: false,
|
|
message: null
|
|
};
|
|
},
|
|
|
|
handleSuccess(message) {
|
|
this.setState({
|
|
submitted: true,
|
|
message: message
|
|
});
|
|
},
|
|
|
|
render() {
|
|
const { location,
|
|
whitelabel: { name: whitelabelName } } = this.props;
|
|
const { message, submitted } = this.state;
|
|
|
|
setDocumentTitle(getLangText('Sign up'));
|
|
|
|
if (submitted) {
|
|
return (
|
|
<div className="ascribe-login-wrapper">
|
|
<br/>
|
|
<div className="ascribe-login-text ascribe-login-header">
|
|
{message}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<div className="ascribe-login-wrapper">
|
|
<SignupForm
|
|
handleSuccess={this.handleSuccess}
|
|
whitelabelName={whitelabelName}
|
|
location={location}/>
|
|
<div className="ascribe-login-text">
|
|
{getLangText(`Already a ${whitelabelName || 'ascribe'} user`)}? <Link to="/login">{getLangText('Log in')}...</Link><br/>
|
|
</div>
|
|
</div>
|
|
|
|
);
|
|
}
|
|
});
|
|
|
|
|
|
export default SignupContainer;
|