Backend\Modules\Authentication\Actions\ResetPassword::execute PHP Method

execute() public method

Execute the action
public execute ( )
    public function execute()
    {
        parent::execute();
        // the user email and key provided match
        if (!$this->isUserAllowed()) {
            $this->redirect(BackendModel::createURLForAction('Index'));
        }
        $this->loadForm();
        $this->validateForm();
        $this->parse();
        $this->display();
    }