| 1 |
<?php defined( 'ABSPATH' ) or exit; ?> |
| 2 |
|
| 3 |
<div class="wrap hf"> |
| 4 |
|
| 5 |
<style type="text/css" scoped> |
| 6 |
label{ display: block; font-weight: bold; font-size: 18px; } |
| 7 |
</style> |
| 8 |
|
| 9 |
<p class="breadcrumbs"> |
| 10 |
<span class="prefix"><?php echo __( 'You are here: ', 'html-forms' ); ?></span> |
| 11 |
<a href="<?php echo admin_url( 'admin.php?page=html-forms' ); ?>">HTML Forms</a> › |
| 12 |
<span class="current-crumb"><strong><?php _e( 'Add new form', 'html-forms' ); ?></strong></span> |
| 13 |
</p> |
| 14 |
|
| 15 |
<h1 class="page-title"><?php _e( 'Add new form', 'html-forms' ); ?></h1> |
| 16 |
|
| 17 |
<form method="post" style="max-width: 600px;"> |
| 18 |
<input type="hidden" name="_hf_admin_action" value="create_form" /> |
| 19 |
|
| 20 |
<p> |
| 21 |
<label>Form title</label> |
| 22 |
<input type="text" name="form[title]" value="" placeholder="<?php esc_attr_e( 'Your form title..', 'html-forms' ); ?>" class="widefat" required /> |
| 23 |
</p> |
| 24 |
|
| 25 |
<?php submit_button(); ?> |
| 26 |
</form> |
| 27 |
|
| 28 |
<?php require __DIR__ . '/admin-footer.php'; ?> |
| 29 |
</div> |
| 30 |
|
| 31 |
|