summaryrefslogtreecommitdiffstats
path: root/web/react/components/password_reset.jsx
blob: 399d3b7b9333036aef769d57f2b32f5db39a79be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

var PasswordResetSendLink = require('./password_reset_send_link.jsx');
var PasswordResetForm = require('./password_reset_form.jsx');

export default class PasswordReset extends React.Component {
    constructor(props) {
        super(props);

        this.state = {};
    }
    render() {
        if (this.props.isReset === 'false') {
            return (
                <PasswordResetSendLink
                    teamDisplayName={this.props.teamDisplayName}
                    teamName={this.props.teamName}
                />
            );
        }

        return (
            <PasswordResetForm
                teamDisplayName={this.props.teamDisplayName}
                teamName={this.props.teamName}
                hash={this.props.hash}
                data={this.props.data}
            />
        );
    }
}

PasswordReset.defaultProps = {
    isReset: '',
    teamName: '',
    teamDisplayName: '',
    hash: '',
    data: ''
};
PasswordReset.propTypes = {
    isReset: React.PropTypes.string,
    teamName: React.PropTypes.string,
    teamDisplayName: React.PropTypes.string,
    hash: React.PropTypes.string,
    data: React.PropTypes.string
};