PluginProbe
WebTotem Security / 2.3.36
WebTotem Security v2.3.36
3.0.2 3.0.1 3.0.0 trunk 1.0 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 2.0 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.1 2.2.2 2.2.3 All 110 releases
wt-security / includes / login.php

login.php in WebTotem Security 2.3.36, at includes/login.php

56 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined('ABSPATH') or die("Protected By WT!");?>
2 <div class="wtotem_welcome-wrapper">
3 <div class="wtotem_content" style="padding:1px">
4 <div class="wtotem_container">
5 <?php WTSEC_LIBRARY_Session::notifications() ?>
6 </div>
7 </div>
8 <div class="wtotem_welcome-wrapper__head-height">
9 <div class="wtotem_modal">
10 <h2 class="wtotem_modal__subject">
11 <?= __( 'Activate the plugin', 'wtotem' ) ?>
12 </h2>
13 <form action="<?php echo esc_url( admin_url('admin-post.php') ); ?>" method="post" class="wtotem_modal__window wt_card">
14 <input type="hidden" name="action" value="wtsec_login_form">
15 <h3 class="wtotem_modal__title">
16 <?= __( 'Welcome friend!', 'wtotem' ) ?>
17 </h3>
18 <p class="wtotem_modal__text">
19 <?= __( 'Sign in to continue to WebTotem', 'wtotem' ) ?>
20 </p>
21 <div class="wtotem_modal__block">
22 <img src="<?=wtsec_getImagePath("logo-circle.svg")?>" alt="Web Totem" class="wtotem_modal__logo" />
23 </div>
24 <div class="wtotem_modal__wrap">
25 <input name="key" type="text" class="wtotem_modal__api-key" placeholder="<?= __( 'API-KEY code', 'wtotem' ) ?>" />
26
27 </div>
28 <button class="wtotem_modal__btn" type="submit">
29 <?= __( 'ACTIVATE', 'wtotem' ) ?>
30 </button>
31 </form>
32 <p class="wtotem_modal__desc">
33 <?= str_replace( '<a>', '<a target="_blank" class="wtotem_modal__cabinet" href="https://wtotem.com/cabinet/profile/keys">',
34 __( 'You can receive the keys in your personal account <a>cabinet</a>', 'wtotem' ) );?>
35 </p>
36 </div>
37 </div>
38
39 <div class="wtotem_welcome-wrapper__footer-height">
40 <div class="wtotem_welcome-bottom">
41 <img src="<?=wtsec_getImagePath("logo-gray.svg")?>" alt="Web Totem" class="wtotem_welcome-bottom__logo" />
42 <p class="wtotem_welcome-bottom__label">
43 © 2017-2021 <?= __( 'All rights reserved', 'wtotem' ) ?>
44 </p>
45 </div>
46 </div>
47 </div>
48
49 <?php if($arguments['logout']):?>
50 <script>
51 window.addEventListener('DOMContentLoaded', function () {
52 AmplitudeAnalytics.loggedOut();
53 });
54 </script>
55 <?php endif;?>
56