PHPFusion\LostPassword::renderInputForm PHP Метод

renderInputForm() публичный Метод

public renderInputForm ( )
    public function renderInputForm()
    {
        $locale = fusion_get_locale();
        $this->_html = openform("passwordform", "post", FUSION_SELF, array("class" => "text-center"));
        $this->_html .= form_text("email", $locale['407'], "", array("max_length" => 100, "width" => "200px", "type" => "email", "inline" => true));
        $this->_html .= form_button("send_password", $locale['408'], $locale['408'], array("class" => "btn-primary"));
        $this->_html .= closeform();
        return TRUE;
    }