TbHtml::inputSubmit PHP Method

inputSubmit() public static method

Generates a form input submit push button.
public static inputSubmit ( string $label = 'Submit', array $htmlOptions = [] ) : string
$label string the button label
$htmlOptions array additional HTML attributes.
return string the generated button.
    public static function inputSubmit($label = 'Submit', $htmlOptions = array())
    {
        return self::btn(self::BUTTON_TYPE_INPUTSUBMIT, $label, $htmlOptions);
    }
TbHtml