PluginProbe
HTML Forms – Simple WordPress Forms Plugin / 1.3.30
HTML Forms – Simple WordPress Forms Plugin v1.3.30
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 1.3.17 All 66 releases
html-forms / views / tab-fields.php

tab-fields.php in HTML Forms – Simple WordPress Forms Plugin 1.3.30, at views/tab-fields.php

22 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="hf-small-margin">
2 <div id="hf-field-builder"></div>
3 </div>
4
5 <div class="hf-small-margin">
6 <div class="hf-row">
7 <div class="hf-col" style="min-width: 600px;">
8 <h4 style="margin-bottom: 0;"><label for="hf-form-editor"><?php _e('Form code', 'html-forms'); ?> <span class="dashicons dashicons-editor-help" style="visibility: hidden;"></span></label></h4>
9 <textarea id="hf-form-editor" class="widefat" name="form[markup]" cols="160" rows="20" autocomplete="false" autocorrect="false" autocapitalize="false" spellcheck="false"><?php echo htmlspecialchars($form->markup, ENT_QUOTES, get_option('blog_charset')); ?></textarea>
10 <?php submit_button(); ?>
11 </div>
12 <div class="hf-col" style="min-width: 400px;">
13 <h4 style="margin-bottom: 0;"><label><?php _e('Form preview', 'html-forms'); ?></label></h4>
14 <iframe id="hf-form-preview" src="<?php echo esc_attr($form_preview_url); ?>"></iframe>
15 <p class="description"><?php esc_html_e('The form may look slightly different than this when shown in a post, page or widget area.', 'html-forms'); ?></p>
16 </div>
17 </div>
18 </div>
19
20 <input type="hidden" id="hf-required-fields" name="form[settings][required_fields]" value="<?php echo esc_attr($form->settings['required_fields']); ?>" />
21 <input type="hidden" id="hf-email-fields" name="form[settings][email_fields]" value="<?php echo esc_attr($form->settings['email_fields']); ?>" />
22