# fluentform/6.2.6/app/Views/public/preview_form.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 6.2.6. 12 lines.

- Page: https://pluginprobe.com/plugins/fluentform/6.2.6/code/app/Views/public/preview_form.php
- Raw: https://pluginprobe.com/plugins/fluentform/6.2.6/raw/app/Views/public/preview_form.php
- Modified: 2026-04-01T13:33:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/6.2.6/code/app/Views/public/preview_form.php#L10-L20`.

```php
<?php

defined('ABSPATH') or die;

?>
<div id="ff_preview" class="fluent_form_demo">
	<div style="background: #eee;color: black;padding: 10px 10px;margin-bottom: 20px;" class="ff_demo_notice">
		<p style="margin-bottom: 0px"><?php esc_html_e('You are viewing preview version of ', 'fluentform'); ?><?php echo esc_html($form->title); ?><?php esc_html_e('. Public users can not see this form. Please use shortcode to embed this form.', 'fluentform'); ?></p>
	</div>
	<?php echo do_shortcode('[fluentform id="'.$form->id.'"]'); ?>
</div>

```
