PluginProbe
HTML Forms – Simple WordPress Forms Plugin / 1.0.1
HTML Forms – Simple WordPress Forms Plugin v1.0.1
1.7.0 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.3.0 1.3.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 All 67 releases
html-forms / src / Admin / views / add-form.php

add-form.php in HTML Forms – Simple WordPress Forms Plugin 1.0.1, at src/Admin/views/add-form.php

31 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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> &rsaquo;
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