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-static.php
60 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 | |
| 7 | /** |
| 8 | * @var array $template_args Array containing all template variables |
| 9 | */ |
| 10 | |
| 11 | $header = new Header(); |
| 12 | $main_tabs = new Main_Tabs(); |
| 13 | |
| 14 | $header->display(); |
| 15 | ?> |
| 16 | |
| 17 | <div class="cb-body"> |
| 18 | <div class="cb-wrapper"> |
| 19 | <?php $main_tabs->display( 'dashboard' ); ?> |
| 20 | |
| 21 | <div class="dashboard-grid has-cbid"> |
| 22 | <!-- Main Content Area --> |
| 23 | <div class="dashboard-grid-row"> |
| 24 | <div class="gray-box"> |
| 25 | <div class="header-section-no-margin"> |
| 26 | <img src="<?php echo \esc_url( CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/icons/set-up-icon.svg' ); ?>" alt="Usercentrics Logo"> |
| 27 | <h1><?php echo \esc_html__( 'Your Consent Management Platform', 'cookiebot' ); ?></h1> |
| 28 | </div> |
| 29 | <div class="header-section"> |
| 30 | <p class="subtitle"> |
| 31 | <?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' ); ?> |
| 32 | </p> |
| 33 | </div> |
| 34 | |
| 35 | <div class="banner-preview-container"> |
| 36 | <div class="banner-images"> |
| 37 | <?php |
| 38 | $banner1_url = CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/banner-getting-started1.png'; |
| 39 | $banner2_url = CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/banner-getting-started2.png'; |
| 40 | ?> |
| 41 | <img src="<?php echo \esc_url( $banner1_url ); ?>" |
| 42 | alt="Banner Preview 1" |
| 43 | class="banner-image"> |
| 44 | <img src="<?php echo \esc_url( $banner2_url ); ?>" |
| 45 | alt="Banner Preview 2" |
| 46 | class="banner-image"> |
| 47 | </div> |
| 48 | </div> |
| 49 | |
| 50 | <div class="banner-actions"> |
| 51 | <button class="cb-btn cb-primary-btn" id="get-started-button-static-dashboard"> |
| 52 | <?php echo esc_html__( 'Login to continue', 'cookiebot' ); ?> |
| 53 | </button> |
| 54 | </div> |
| 55 | </div> |
| 56 | </div> |
| 57 | </div> |
| 58 | </div> |
| 59 | </div> |
| 60 |