PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.5.3
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.5.3
4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.5 3.6.6 3.7.0 3.7.1 3.8.0 3.9.0 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.2.0 4.2.1 4.2.10 4.2.11 4.2.12 4.2.13 4.2.14 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.3.10 4.3.11 4.3.12 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 4.3.7.1 4.3.8 4.3.9 4.3.9.1 4.4.0 4.4.1 4.4.2 4.5.0 4.5.1 4.5.10 4.5.11 4.5.2 4.5.3 4.5.4 4.5.5 4.5.6 4.5.7 4.5.8 4.5.9 4.6.0 4.6.1 4.6.2 4.6.3 4.6.4 4.6.5 4.6.6 4.6.7 4.7.0
cookiebot / src / view / admin / common / dashboard-page-session-expired.php
cookiebot / src / view / admin / common Last commit date
prior-consent 1 year ago templates 1 year ago dashboard-page-old.php 1 year ago dashboard-page-session-expired.php 1 year ago dashboard-page-static.php 1 year ago dashboard-page.php 1 year ago dashboard-trial-expired.php 1 year ago network-settings-page.php 1 year ago settings-page.php 1 year ago support-page.php 1 year ago
dashboard-page-session-expired.php
91 lines
1 <?php
2
3 use cybot\cookiebot\lib\Cookiebot_WP;
4 use cybot\cookiebot\settings\templates\Header;
5 use cybot\cookiebot\settings\templates\Main_Tabs;
6 use cybot\cookiebot\settings\pages\Settings_Page;
7
8 /**
9 * @var array $template_args Array containing all template variables
10 */
11
12 $header = new Header();
13 $main_tabs = new Main_Tabs();
14
15 $header->display();
16 ?>
17
18
19 <div class="cb-body">
20
21 <div class="cb-wrapper">
22 <?php $main_tabs->display( 'dashboard' ); ?>
23
24 <div class="dashboard-grid">
25
26 <!-- Main Content Area -->
27 <div class="dashboard-grid-row">
28 <div class="gray-box">
29 <div class="header-section-no-margin">
30 <img src="<?php echo \esc_url( CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/icons/set-up-icon.svg' ); ?>" alt="Usercentrics Logo">
31 <h1><?php echo \esc_html__( 'Set up your consent banner', 'cookiebot' ); ?></h1>
32 </div>
33 <div class="header-section">
34 <p class="subtitle">
35 <?php echo esc_html__( 'Get your site GDPR-compliant in', 'cookiebot' ); ?>
36 <strong><?php echo esc_html__( 'just a few clicks.', 'cookiebot' ); ?></strong>
37 <?php echo esc_html__( 'Enter your email, verify it, and create your password.', 'cookiebot' ); ?>
38 </p>
39 </div>
40
41
42 <!-- Steps Container -->
43 <div class="steps-container">
44 <!-- Activate your banner step -->
45 <div class="step-box">
46 <div class="step-row">
47
48 <div class="step-icon">
49 <div class="empty-circle"></div>
50 </div>
51 <div class="step-content">
52 <h2><?php echo \esc_html__( 'Activate your banner', 'cookiebot' ); ?></h2>
53 </div>
54 </div>
55
56 <div class="banner-preview-container">
57 <div class="divider"></div>
58 <p class="step-description">
59 <?php echo esc_html__( 'Activate your banner in seconds with easy auto-setup, smart data processing services detection, and consent-first blocking for automated privacy compliance.', 'cookiebot' ); ?>
60 </p>
61 <div class="banner-images">
62 <?php
63 $banner1_url = CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/banner-getting-started1.png';
64 $banner2_url = CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/banner-getting-started2.png';
65 $arrow_url = CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/banner-arrow.png';
66 ?>
67 <img src="<?php echo \esc_url( $banner1_url ); ?>"
68 alt="Banner Preview 1"
69 class="banner-image">
70 <img src="<?php echo \esc_url( $banner2_url ); ?>"
71 alt="Banner Preview 2"
72 class="banner-image">
73 </div>
74 <div class="activate-container">
75 <button id="get-started-button-static-dashboard" class="cb-btn cb-primary-btn cb-get-started-btn">
76 <?php echo esc_html__( 'Get Started', 'cookiebot' ); ?>
77 </button>
78 <img src="<?php echo \esc_url( $arrow_url ); ?>"
79 alt="arrow"
80 class="banner-arrow">
81 </div>
82 </div>
83 </div>
84
85 </div>
86 </div>
87 </div>
88 </div>
89 </div>
90 </div>
91