PluginProbe
WebTotem Security / 2.4.21
WebTotem Security v2.4.21
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 / templates / error.html.twig

error.html.twig in WebTotem Security 2.4.21, at includes/templates/error.html.twig

36 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <script>
2 jQuery(document).ready(function ($) {
3 jQuery('.open-popup').on('click', function (e) {
4 jQuery.post(
5 ajaxurl,
6 {
7 action: 'wtotem_ajax',
8 ajax_action: 'popup',
9 popup_action: jQuery(this).data('action'),
10 wtotem_page_nonce: '{{ page_nonce }}',
11 },
12 function (data) {
13
14 if(data.success){
15 jQuery('.wtotem_body').append(data.content);
16 }
17 }
18 );
19 });
20 });
21 </script>
22
23 <div class="wtotem_not-working__card message-card wtotem-mb-15">
24 <h2 class="wtotem_not-working__title message-card__title">{{ 'Data access error'|trans }}</h2>
25 <img class="wtotem_not-working__img" src="{{ images_path }}people-with-glass.svg" width="183" height="156" alt="People with loupe" />
26 <p class="wtotem_not-working__text">
27 {{ 'Try reinstalling the agents or changing the API key'|trans }}
28 </p>
29
30 <div class="wtotem_button wtotem_control__btn open-popup wtotem-mb-15" data-action="reinstall_agents">
31 <img src="{{ images_path }}reload.svg" alt=""> <span>{{ 'Reinstall agents'|trans }}</span>
32 </div>
33 <div class="wtotem_button wtotem_control__btn open-popup" data-action="logout">
34 {{ 'API-key change'|trans }}
35 </div>
36 </div>