Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 531 Bytes

submit-button.md

File metadata and controls

24 lines (16 loc) · 531 Bytes

Submit Button Field

Represents <button> element of type "submit" that is rendered as button for submitting a form. Documentation:

Usage Example

Widget:

use Yiisoft\Form\Field\SubmitButton;

echo SubmitButton::widget()->content('Go!');

Result will be:

<div>
    <button type="submit">Go!</button>
</div>