default-template.php
23 lines
| 1 | <div class="h-row"> |
| 2 | <div class="h-col h-col-12 h-col-md-6"> |
| 3 | <p> |
| 4 | <label><?php esc_html_e( 'Name', 'kubio' ); ?> [text* your-name autocomplete:name] </label> |
| 5 | </p> |
| 6 | </div> |
| 7 | <div class="h-col h-col-12 h-col-md-6"> |
| 8 | <p> |
| 9 | <label><?php esc_html_e( 'Email', 'kubio' ); ?> [email* your-email autocomplete:email] </label> |
| 10 | </p> |
| 11 | </div> |
| 12 | </div> |
| 13 | |
| 14 | <p> |
| 15 | <label><?php esc_html_e( 'Subject', 'kubio' ); ?> [text* your-subject] </label> |
| 16 | </p> |
| 17 | |
| 18 | <p> |
| 19 | <label><?php esc_html_e( 'Message', 'kubio' ); ?> [textarea* your-message 40x7] </label> |
| 20 | </p> |
| 21 | |
| 22 | <p>[submit "<?php esc_html_e( 'Send message', 'kubio' ); ?>"]</p> |
| 23 |