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

WebTotem Security, version 2.1.9. 81 lines.

- Page: https://pluginprobe.com/plugins/wt-security/2.1.9/code/includes/login.php
- Raw: https://pluginprobe.com/plugins/wt-security/2.1.9/raw/includes/login.php
- Modified: 2020-08-10T10:53:38+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.1.9/code/includes/login.php#L10-L20`.

```php
<?php defined('ABSPATH') or die("Protected By WT!");?>
<div class="wtotem_welcome-wrapper">
    <div class="wtotem_welcome-wrapper__head-height">
        <div class="wtotem_modal">
            <h2 class="wtotem_modal__subject">
                <?=wtsec_locale("auth.activate_the_plugin")?>
            </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="login_form">
                <h3 class="wtotem_modal__title">
                    <?=wtsec_locale("auth.welcome")?>
                </h3>
                <p class="wtotem_modal__text">
                    <?=wtsec_locale("auth.sign_in")?>
                </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="<?=wtsec_locale("auth.api_key_code")?>"
                    />
                    <img
                            src="<?=wtsec_getImagePath("info-blue.svg")?>"
                            alt="Info"
                            class="wtotem_modal__info"
                    />
                </div>
                <button class="wtotem_modal__btn" type="submit">
                    <?=wtsec_locale("auth.activate")?>
                </button>
            </form>
            <p class="wtotem_modal__desc">
                <?=wtsec_locale("auth.info")?>
                <a
                        target="_blank"
                        class="wtotem_modal__cabinet"
                        href="https://wtotem.com/cabinet/sign-in"
                >
                    <?=wtsec_locale("auth.cabinet")?>
                </a>
            </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-2020 <?= wtsec_locale("all_right_reserved") ?>
            </p>
            <div class="wtotem_welcome-bottom__block">
                <a
                        target="_blank"
                        href="https://apps.apple.com/us/app/webtotem/id1289069562"
                        class="wtotem_welcome-bottom__store"
                >
                    <img src="<?=wtsec_getImagePath("app-store.svg")?>" alt="App Store" />
                </a>
                <a
                        target="_blank"
                        href="https://play.google.com/store/apps/details?id=com.indepo.webtotem"
                        class="wtotem_welcome-bottom__store"
                >
                    <img src="<?=wtsec_getImagePath("play-store.svg")?>" alt="Play Store" />
                </a>
            </div>
        </div>
    </div>
</div>
```
