summaryrefslogtreecommitdiffstats
path: root/webapp/components/password_reset_form.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/password_reset_form.jsx')
-rw-r--r--webapp/components/password_reset_form.jsx131
1 files changed, 0 insertions, 131 deletions
diff --git a/webapp/components/password_reset_form.jsx b/webapp/components/password_reset_form.jsx
deleted file mode 100644
index 5b77cb3e6..000000000
--- a/webapp/components/password_reset_form.jsx
+++ /dev/null
@@ -1,131 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import ReactDOM from 'react-dom';
-import * as Utils from 'utils/utils.jsx';
-import Constants from 'utils/constants.jsx';
-
-import {FormattedMessage} from 'react-intl';
-
-import {resetPassword} from 'actions/user_actions.jsx';
-
-import PropTypes from 'prop-types';
-
-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;
- if (!password || password.length < Constants.MIN_PASSWORD_LENGTH) {
- this.setState({
- error: (
- <FormattedMessage
- id='password_form.error'
- defaultMessage='Please enter at least {chars} characters.'
- values={{
- chars: Constants.MIN_PASSWORD_LENGTH
- }}
- />
- )
- });
- return;
- }
-
- this.setState({
- error: null
- });
-
- resetPassword(
- this.props.location.query.token,
- password,
- () => {
- this.setState({error: null});
- },
- (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: PropTypes.object.isRequired,
- location: PropTypes.object.isRequired
-};
-
-export default PasswordResetForm;