mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
30 lines
911 B
JavaScript
30 lines
911 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import Router from 'react-router';
|
|
|
|
import PasswordResetForm from './ascribe_forms/form_password_reset';
|
|
|
|
import GlobalNotificationModel from '../models/global_notification_model';
|
|
import GlobalNotificationActions from '../actions/global_notification_actions';
|
|
|
|
let PasswordResetContainer = React.createClass({
|
|
mixins: [Router.Navigation],
|
|
|
|
handleSuccess(){
|
|
this.transitionTo('pieces');
|
|
let notification = new GlobalNotificationModel('password succesfully updated', 'success', 10000);
|
|
GlobalNotificationActions.appendGlobalNotification(notification);
|
|
},
|
|
render() {
|
|
return (
|
|
<PasswordResetForm
|
|
email={this.props.query.email}
|
|
token={this.props.query.token}
|
|
handleSuccess={this.handleSuccess}
|
|
/>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default PasswordResetContainer; |