# wt-security/2.3.44/includes/login.php

WebTotem Security, version 2.3.44. 59 lines.

- Page: https://pluginprobe.com/plugins/wt-security/2.3.44/code/includes/login.php
- Raw: https://pluginprobe.com/plugins/wt-security/2.3.44/raw/includes/login.php
- Modified: 2021-12-14T04:20: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/wt-security/2.3.44/code/includes/login.php#L10-L20`.

```php
<?php defined('ABSPATH') or die("Protected By WT!");?>
<div class="wtotem_welcome-wrapper">
    <div class="wtotem_content" style="padding:1px">
        <div class="wtotem_container">
            <?php WTSEC_LIBRARY_Session::notifications() ?>
        </div>
    </div>
    <div class="wtotem_welcome-wrapper__head-height">
        <div class="wtotem_modal">
            <h2 class="wtotem_modal__subject">
                <?= __( 'Activate the plugin', 'wtotem' ) ?>
            </h2>
            <form action="<?php echo esc_url( admin_url('admin-post.php') ); ?>" method="post" class="wtotem_modal__window wt_card">
                <input type="hidden" name="action" value="wtsec_login_form">
                <h3 class="wtotem_modal__title">
                    <?= __( 'Welcome friend!', 'wtotem' ) ?>
                </h3>
                <p class="wtotem_modal__text">
                    <?= __( 'Sign in to continue to WebTotem', 'wtotem' ) ?>
                </p>
                <div class="wtotem_modal__block">
                    <img src="<?=wtsec_getImagePath("logo-circle.svg")?>" alt="Web Totem" class="wtotem_modal__logo" />
                </div>
                <div class="wtotem_modal__wrap">
                    <input name="key" type="text" class="wtotem_modal__api-key" placeholder="<?= __( 'API-KEY code', 'wtotem' ) ?>" />

                </div>
                <button class="wtotem_modal__btn" type="submit">
                    <?= __( 'ACTIVATE', 'wtotem' ) ?>
                </button>
            </form>
            <p class="wtotem_modal__desc">
                <?= str_replace( '<a>', '<a target="_blank" class="wtotem_modal__cabinet" href="https://wtotem.com/cabinet/profile/keys">',
                    __( 'You can receive the keys in your personal account <a>cabinet</a>', 'wtotem' ) );?>
                <?= str_replace( '<a>', '<a target="_blank" class="wtotem_modal__cabinet" href="https://docs.wtotem.com/plugin-for-wordpress#vy-to-activate-the-plugin">',
                    __( 'or read the activation <a>manual</a>', 'wtotem' ) );?>
            </p>

        </div>
    </div>

    <div class="wtotem_welcome-wrapper__footer-height">
        <div class="wtotem_welcome-bottom">
            <img src="<?=wtsec_getImagePath("logo-gray.svg")?>" alt="Web Totem" class="wtotem_welcome-bottom__logo" />
            <p class="wtotem_welcome-bottom__label">
                © 2017-2021 <?= __( 'All rights reserved', 'wtotem' ) ?>
            </p>
        </div>
    </div>
</div>

<?php if($arguments['logout']):?>
    <script>
        window.addEventListener('DOMContentLoaded', function () {
            AmplitudeAnalytics.loggedOut();
        });
    </script>
<?php endif;?>

```
