cyberstammtisch-silverstripe/themes/starter/templates/SilverStripe/Forms/FormAction.ss
2021-10-20 13:45:30 +02:00

11 lines
360 B
Scheme
Executable file

<% if $UseButtonTag %>
<button $getAttributesHTML('class') class="{$ExtraClass.ATT} btn btn-secondary rounded" />
<% if $ButtonContent %>
{$ButtonContent.RAW}
<% else %>
{$Title.XML}
<% end_if %>
</button>
<% else %>
<input $getAttributesHTML('class') class="{$ExtraClass.ATT} btn btn-secondary rounded" />
<% end_if %>