blob: 86342090282bebd731a3ed91ef9d73337ba34b25 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import ReactDOM from 'react-dom';
import * as Client from 'utils/client.jsx';
import * as Utils from 'utils/utils.jsx';
import Constants from 'utils/constants.jsx';
import {FormattedMessage} from 'react-intl';
import {browserHistory} from 'react-router';
import React from 'react';
class PasswordResetForm extends React.Component {
constructor(props) {
super(props);
this.handlePasswordReset = this.handlePasswordReset.bind(this);
this.state = {};
}
handlePasswordReset(e) {
e.preventDefault();
const password = ReactDOM.findDOMNode(this.refs.password).value.trim();
if (!password || password.length < Constants.MIN_PASSWORD_LENGTH) {
this.setState({
error: (
<FormattedMessage
id='password_form.error'
defaultMessage='Please enter at least {chars} characters.'
chars={Constants.MIN_PASSWORD_LENGTH}
/>
)
});
return;
}
this.setState({
error: null
});
const data = {};
data.new_password = password;
data.hash = this.props.location.query.h;
data.data = this.props.location.query.d;
data.name = this.props.params.team;
Client.resetPassword(data,
() => {
this.setState({error: null});
browserHistory.push('/' + this.props.params.team + '/login');
},
(err) => {
this.setState({error: err.message});
}
);
}
render() {
var error = null;
if (this.state.error) {
error = (
<div className='form-group has-error'>
<label className='control-label'>
{this.state.error}
</label>
</div>
);
}
var formClass = 'form-group';
if (error) {
formClass += ' has-error';
}
return (
<div className='col-sm-12'>
<div className='signup-team__container'>
<h3>
<FormattedMessage
id='password_form.title'
defaultMessage='Password Reset'
/>
</h3>
<form onSubmit={this.handlePasswordReset}>
<p>
<FormattedMessage
id='password_form.enter'
defaultMessage='Enter a new password for your {siteName} account.'
values={{
siteName: global.window.mm_config.SiteName
}}
/>
</p>
<div className={formClass}>
<input
type='password'
className='form-control'
name='password'
ref='password'
placeholder={Utils.localizeMessage(
'password_form.pwd',
'Password'
)}
spellCheck='false'
/>
</div>
{error}
<button
type='submit'
className='btn btn-primary'
>
<FormattedMessage
id='password_form.change'
defaultMessage='Change my password'
/>
</button>
</form>
</div>
</div>
);
}
}
PasswordResetForm.defaultProps = {
};
PasswordResetForm.propTypes = {
params: React.PropTypes.object.isRequired,
location: React.PropTypes.object.isRequired
};
export default PasswordResetForm;
|