# notificationx/3.2.11/includes/Admin/views/main.views.php

NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner &amp; Floating Notification Bar, version 3.2.11. 28 lines.

- Page: https://pluginprobe.com/plugins/notificationx/3.2.11/code/includes/Admin/views/main.views.php
- Raw: https://pluginprobe.com/plugins/notificationx/3.2.11/raw/includes/Admin/views/main.views.php
- Modified: 2023-03-16T07:32:06+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/notificationx/3.2.11/code/includes/Admin/views/main.views.php#L10-L20`.

```php
<style>
.notificationx-disabled-javascript-notice {
    font-size: 20px;
    width: 700px;
    border: 1px solid #ffcece;
    padding: 30px;
    background: #fff;
}
</style>
<hr class="wp-header-end"/>
<div class="wrap">
    <div class="notificationx-admin">
        <noscript>
            <p class="notificationx-disabled-javascript-notice">
                <?php
                    echo
                        // translators: html tags
                        __( 'To work <strong><em>NotificationX</em></strong> properly you need to <strong>Enable JavaScript</strong> in your browser or make sure you have installed updated browser in your device.', 'notificationx' );
                ?>
            </p>
        </noscript>
        <div id="notificationx">
            <div style="display: flex;align-items: center;justify-content: center;height: 60vh;">
                <img src="<?php echo esc_url( self::ASSET_URL . 'images/logos/logo-preloader.gif' ); ?>" alt="">
            </div>
        </div>
    </div>
</div>
```
