Frontend\Modules\Profiles\Actions\ResetPassword::parse PHP Method

parse() private method

Parse the data into the template.
private parse ( )
    private function parse()
    {
        // has the password been saved?
        if ($this->URL->getParameter('sent') == 'true') {
            // show message
            $this->tpl->assign('resetPasswordSuccess', true);
            // hide form
            $this->tpl->assign('resetPasswordHideForm', true);
        } else {
            $this->frm->parse($this->tpl);
        }
    }