form.php
38 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Template Name: Default Form |
| 4 | * Description: The default form template. |
| 5 | */ |
| 6 | ?> |
| 7 | <div class="strong-view strong-form <?php wpmtst_container_class(); ?>"<?php wpmtst_container_data(); ?>> |
| 8 | |
| 9 | <?php do_action( 'wpmtst_before_form' ); ?> |
| 10 | |
| 11 | <div id="wpmtst-form"> |
| 12 | |
| 13 | <div class="strong-form-inner"> |
| 14 | |
| 15 | <?php wpmtst_field_required_notice(); ?> |
| 16 | |
| 17 | <form <?php wpmtst_form_info(); ?>> |
| 18 | |
| 19 | <?php wpmtst_form_setup(); ?> |
| 20 | |
| 21 | <?php do_action( 'wpmtst_form_before_fields' ); ?> |
| 22 | |
| 23 | <?php wpmtst_all_form_fields(); ?> |
| 24 | |
| 25 | <?php do_action( 'wpmtst_form_after_fields' ); ?> |
| 26 | |
| 27 | <?php wpmtst_form_submit_button(); ?> |
| 28 | |
| 29 | </form> |
| 30 | |
| 31 | </div> |
| 32 | |
| 33 | </div> |
| 34 | |
| 35 | <?php do_action( 'wpmtst_after_form' ); ?> |
| 36 | |
| 37 | </div> |
| 38 |