prior-consent
1 year ago
templates
4 months ago
dashboard-cookiebot.php
7 months ago
dashboard-page-old.php
4 months ago
dashboard-page-session-expired.php
10 months ago
dashboard-page-static.php
10 months ago
dashboard-page.php
7 months ago
dashboard-trial-expired.php
10 months ago
network-settings-page.php
4 months ago
ppg-page.php
4 months ago
settings-page.php
4 months ago
support-page.php
9 months ago
dashboard-page-static.php
61 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 function cybot\cookiebot\lib\asset_url; |
| 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 | <div class="cb-body"> |
| 19 | <div class="cb-wrapper"> |
| 20 | <?php $main_tabs->display( 'dashboard' ); ?> |
| 21 | |
| 22 | <div class="dashboard-grid has-cbid"> |
| 23 | <!-- Main Content Area --> |
| 24 | <div class="dashboard-grid-row"> |
| 25 | <div class="gray-box"> |
| 26 | <div class="header-section-no-margin"> |
| 27 | <img src="<?php echo \esc_url( asset_url( 'img/icons/set-up-icon.svg' ) ); ?>" alt="Usercentrics Logo"> |
| 28 | <h1><?php echo \esc_html__( 'Your Consent Management Platform', 'cookiebot' ); ?></h1> |
| 29 | </div> |
| 30 | <div class="header-section"> |
| 31 | <p class="subtitle"> |
| 32 | <?php echo esc_html__( 'Set up your consent banner in seconds with easy auto-setup, smart data processing services detection, and consent-first blocking for automated privacy compliance.', 'cookiebot' ); ?> |
| 33 | </p> |
| 34 | </div> |
| 35 | |
| 36 | <div class="banner-preview-container"> |
| 37 | <div class="banner-images"> |
| 38 | <?php |
| 39 | $banner1_url = asset_url( 'img/banner-getting-started1.png' ); |
| 40 | $banner2_url = asset_url( 'img/banner-getting-started2.png' ); |
| 41 | ?> |
| 42 | <img src="<?php echo \esc_url( $banner1_url ); ?>" |
| 43 | alt="Banner Preview 1" |
| 44 | class="banner-image"> |
| 45 | <img src="<?php echo \esc_url( $banner2_url ); ?>" |
| 46 | alt="Banner Preview 2" |
| 47 | class="banner-image"> |
| 48 | </div> |
| 49 | </div> |
| 50 | |
| 51 | <div class="banner-actions"> |
| 52 | <button class="cb-btn cb-primary-btn" id="get-started-button-static-dashboard"> |
| 53 | <?php echo esc_html__( 'Login to continue', 'cookiebot' ); ?> |
| 54 | </button> |
| 55 | </div> |
| 56 | </div> |
| 57 | </div> |
| 58 | </div> |
| 59 | </div> |
| 60 | </div> |
| 61 |