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
99 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__( 'Get your banner live in seconds', '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 |
| 60 | echo wp_kses( |
| 61 | __( 'Instant setup with automatic cookie blocking. Try all features free for <strong>14 days</strong> - no card needed.<br> Choose Free or Premium before your trial ends to stay live.', 'cookiebot' ), |
| 62 | array( |
| 63 | 'strong' => array(), |
| 64 | 'br' => array(), |
| 65 | ) |
| 66 | ); |
| 67 | ?> |
| 68 | </p> |
| 69 | <div class="banner-images"> |
| 70 | <?php |
| 71 | $banner1_url = CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/banner-getting-started1.png'; |
| 72 | $banner2_url = CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/banner-getting-started2.png'; |
| 73 | $arrow_url = CYBOT_COOKIEBOT_PLUGIN_URL . 'assets/img/banner-arrow.png'; |
| 74 | ?> |
| 75 | <img src="<?php echo \esc_url( $banner1_url ); ?>" |
| 76 | alt="Banner Preview 1" |
| 77 | class="banner-image"> |
| 78 | <img src="<?php echo \esc_url( $banner2_url ); ?>" |
| 79 | alt="Banner Preview 2" |
| 80 | class="banner-image"> |
| 81 | </div> |
| 82 | <div class="activate-container"> |
| 83 | <button id="get-started-button-static-dashboard" class="cb-btn cb-primary-btn cb-get-started-btn"> |
| 84 | <?php echo esc_html__( 'Get Started', 'cookiebot' ); ?> |
| 85 | </button> |
| 86 | <img src="<?php echo \esc_url( $arrow_url ); ?>" |
| 87 | alt="arrow" |
| 88 | class="banner-arrow"> |
| 89 | </div> |
| 90 | </div> |
| 91 | </div> |
| 92 | |
| 93 | </div> |
| 94 | </div> |
| 95 | </div> |
| 96 | </div> |
| 97 | </div> |
| 98 | </div> |
| 99 |