12 lines
647 B
HTML
12 lines
647 B
HTML
|
|
<h3>Here goes your custom form</h3>
|
||
|
|
<p>Override HTML by creating a new partial called <strong>default.htm</strong> (more info <a href="https://octobercms.com/docs/cms/components#overriding-partials" target="_blank">here</a>)</p>
|
||
|
|
<p>You can copy/paste this basic template:</p>
|
||
|
|
<pre>
|
||
|
|
<form data-request="{{ __SELF__ }}::onFormSubmit">
|
||
|
|
{{ form_token() }}
|
||
|
|
<div id="{{ __SELF__ }}_forms_flash"></div>
|
||
|
|
<!-- YOUR FORM FIELDS -->
|
||
|
|
{% partial '@recaptcha' %}
|
||
|
|
<!-- SUBMIT BUTTON -->
|
||
|
|
</form>
|
||
|
|
</pre>
|