2015-06-15 15:28:53 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import ModalWrapper from './modal_wrapper';
|
|
|
|
import PasswordResetRequestForm from '../ascribe_forms/form_password_reset_request';
|
|
|
|
|
|
|
|
import GlobalNotificationModel from '../../models/global_notification_model';
|
|
|
|
import GlobalNotificationActions from '../../actions/global_notification_actions';
|
2015-07-03 19:08:56 +02:00
|
|
|
import { getLangText } from '../../utils/lang_utils.js'
|
2015-06-15 15:28:53 +02:00
|
|
|
|
|
|
|
let PasswordResetRequestModal = React.createClass({
|
|
|
|
handleResetSuccess(){
|
2015-07-03 19:08:56 +02:00
|
|
|
let notificationText = getLangText('Request successfully sent, check your email');
|
2015-06-15 15:28:53 +02:00
|
|
|
let notification = new GlobalNotificationModel(notificationText, 'success', 50000);
|
|
|
|
GlobalNotificationActions.appendGlobalNotification(notification);
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<ModalWrapper
|
|
|
|
button={this.props.button}
|
2015-07-03 19:08:56 +02:00
|
|
|
title={getLangText('Reset your password')}
|
2015-06-15 15:28:53 +02:00
|
|
|
handleSuccess={this.handleResetSuccess}
|
2015-07-03 19:08:56 +02:00
|
|
|
tooltip={getLangText('Reset your password')}>
|
2015-06-15 15:28:53 +02:00
|
|
|
<PasswordResetRequestForm />
|
|
|
|
</ModalWrapper>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default PasswordResetRequestModal;
|