# fluentform/3.6.65/resources/views/admin/notices/info.php

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

- Page: https://pluginprobe.com/plugins/fluentform/3.6.65/code/resources/views/admin/notices/info.php
- Raw: https://pluginprobe.com/plugins/fluentform/3.6.65/raw/resources/views/admin/notices/info.php
- Modified: 2019-11-03T06:44:02+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/3.6.65/code/resources/views/admin/notices/info.php#L10-L20`.

```php
<div id="ff_notice_<?php echo $notice['name']; ?>" class="update-nag fluentform-admin-notice fluent_info_notice">
    <?php if($show_logo): ?>
        <div class="ff_logo_holder">
            <img alt="Fluent Forms Logo" src="<?php echo $logo_url; ?>" />
        </div>
    <?php endif; ?>
    <div class="ff_notice_container">
        <?php if($show_hide_nag): ?>
        <div class="ff_temp_hide_nag"><span data-notice_type="temp" data-notice_name="<?php echo $notice['name']; ?>" title="Hide this Notification" class="dashicons dashicons-dismiss ff_nag_cross nag_cross_btn"></span></div>
        <?php endif; ?>
        
        <h3><?php echo $notice['title']; ?></h3>
        <p><?php echo $notice['message']; ?></p>
        <div class="ff_notice_buttons">
            <?php foreach ($notice['links'] as $link): ?>
                <a <?php echo $link['btn_atts']; ?> href="<?php echo $link['href']; ?>"><?php echo $link['btn_text']; ?></a>
            <?php endforeach; ?>
        </div>
    </div>
</div>
```
