# logtivity/trunk/views/activation.php

Activity Logs, User Activity Tracking, Multisite Activity Log from Logtivity, version trunk. 85 lines.

- Page: https://pluginprobe.com/plugins/logtivity/trunk/code/views/activation.php
- Raw: https://pluginprobe.com/plugins/logtivity/trunk/raw/views/activation.php
- Modified: 2026-09-02T17:58:12+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/logtivity/trunk/code/views/activation.php#L10-L20`.

```php
<?php

/**
 * @package   Logtivity
 * @contact   logtivity.io, hello@logtivity.io
 * @copyright 2024-2026 Logtivity. All rights reserved
 * @license   https://www.gnu.org/licenses/gpl.html GNU/GPL
 *
 * This file is part of Logtivity.
 *
 * Logtivity is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * Logtivity is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Logtivity.  If not, see <https://www.gnu.org/licenses/>.
 */
?>
<div style="<?php echo ($display ?? false) ? 'display:block;' : '' ?>"
     class="updated notice logtivity-notice is-dismissible">
    <div>
        <div style="<?php echo ($logo ?? false) ? '' : 'display:none;'; ?>">
            <img style="margin: 0 0 20px; display: block; width: 200px; height: auto;"
                 src="<?php echo sprintf('%s/logtivity/assets/logtivity-logo.svg', plugin_dir_url('logtivity.php')) ?>"
                 alt="Logtivity">
        </div>
        <div>
            <h3>
                <?php esc_html_e('Welcome to Logtivity! We make activity logs simple!', 'logtivity') ?>
            </h3>
            <p>
                <?php esc_html_e("Here's how to start your activity log for this site:", 'logtivity') ?>
            </p>
            <ol>
                <li>
                    <?php
                    echo sprintf(
                        esc_html__('%1$sCreate a Logtivity account%2$s or %3$slog in to your Logtivity account%4$s.', 'logtivity'),
                        '<a target="_blank" href="' . logtivity_get_app_url() . '/register">',
                        '</a>',
                        '<a target="_blank" href="' . logtivity_get_app_url() . '/login">',
                        '</a>'
                    );
                    ?>
                </li>
                <li>
                    <?php
                    echo sprintf(
                        esc_html__('%sRead the "Add Site" instructions%s and get your API Key.', 'logtivity'),
                        '<a target="_blank" href="https://logtivity.io/docs/connect-your-site-to-logtivity/">',
                        '</a>'
                    );
                    ?>
                </li>
                <li>
                    <?php
                    echo sprintf(
                        esc_html__('Add your API Key into %sthe Logtivity Settings area%s on this site.', 'logtivity'),
                        '<a target="_blank" href="' . admin_url('admin.php?page=logtivity-settings') . '">',
                        '</a>'
                    );
                    ?>
                </li>
            </ol>
            <p>
                <a class="button-primary logtivity-button logtivity-button-secondary"
                   target="_blank"
                   href="<?php echo logtivity_get_app_url() . '/login'; ?>">
                    <?php esc_html_e('Login to Logtivity', 'logtivity'); ?>
                </a> <a class="button-primary logtivity-button logtivity-button-primary"
                        target="_blank"
                        href="<?php echo logtivity_get_app_url() . '/register'; ?>">
                    <?php esc_html_e('Start your free 10 day trial', 'logtivity'); ?>
                </a>
            </p>
        </div>
    </div>
</div>

```
