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
11 months ago
dashboard-page-static.php
11 months ago
dashboard-page.php
7 months ago
dashboard-trial-expired.php
11 months ago
network-settings-page.php
5 months ago
ppg-page.php
4 months ago
settings-page.php
4 months ago
support-page.php
9 months ago
dashboard-page-session-expired.php
94 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 | use function cybot\cookiebot\lib\asset_url; |
| 8 | |
| 9 | /** |
| 10 | * @var array $template_args Array containing all template variables |
| 11 | */ |
| 12 | |
| 13 | $header = new Header(); |
| 14 | $main_tabs = new Main_Tabs(); |
| 15 | |
| 16 | $header->display(); |
| 17 | ?> |
| 18 | |
| 19 | |
| 20 | <div class="cb-body"> |
| 21 | |
| 22 | <div class="cb-wrapper"> |
| 23 | <?php $main_tabs->display( 'dashboard' ); ?> |
| 24 | |
| 25 | <div class="dashboard-grid"> |
| 26 | |
| 27 | <!-- Main Content Area --> |
| 28 | <div class="dashboard-grid-row"> |
| 29 | <div class="gray-box"> |
| 30 | <div class="header-section-no-margin"> |
| 31 | <img src="<?php echo \esc_url( asset_url( 'img/icons/set-up-icon.svg' ) ); ?>" alt="Usercentrics Logo"> |
| 32 | <h1><?php echo \esc_html__( 'Set up your cookie banner', 'cookiebot' ); ?></h1> |
| 33 | </div> |
| 34 | <div class="header-section"> |
| 35 | <p class="subtitle"> |
| 36 | <?php echo esc_html__( 'Get your site GDPR-compliant in ', 'cookiebot' ); ?> |
| 37 | <strong><?php echo esc_html__( 'just a few clicks.', 'cookiebot' ); ?></strong> |
| 38 | <?php echo esc_html__( 'Enter your email, verify it, and create your password.', 'cookiebot' ); ?> |
| 39 | </p> |
| 40 | </div> |
| 41 | |
| 42 | |
| 43 | <!-- Steps Container --> |
| 44 | <div class="steps-container"> |
| 45 | <!-- Activate your banner step --> |
| 46 | <div class="step-box"> |
| 47 | <div class="step-row"> |
| 48 | |
| 49 | <div class="step-icon"> |
| 50 | <div class="empty-circle"></div> |
| 51 | </div> |
| 52 | <div class="step-content"> |
| 53 | <h2><?php echo \esc_html__( 'Get your banner live in seconds', 'cookiebot' ); ?></h2> |
| 54 | </div> |
| 55 | </div> |
| 56 | |
| 57 | <div class="banner-preview-container"> |
| 58 | <div class="divider"></div> |
| 59 | <p class="step-description"> |
| 60 | • Instant setup & automatic cookie blocking<br> |
| 61 | • 14 days of all-access premium features (no card needed)<br> |
| 62 | • Keep it live afterwards on our Free plan or upgrade any time |
| 63 | </p> |
| 64 | <div class="banner-images"> |
| 65 | <?php |
| 66 | $banner1_url = asset_url( 'img/banner-getting-started1.png' ); |
| 67 | $banner2_url = asset_url( 'img/banner-getting-started2.png' ); |
| 68 | $arrow_url = asset_url( 'img/banner-arrow.png' ); |
| 69 | ?> |
| 70 | <img src="<?php echo \esc_url( $banner1_url ); ?>" |
| 71 | alt="Banner Preview 1" |
| 72 | class="banner-image"> |
| 73 | <img src="<?php echo \esc_url( $banner2_url ); ?>" |
| 74 | alt="Banner Preview 2" |
| 75 | class="banner-image"> |
| 76 | </div> |
| 77 | <div class="activate-container"> |
| 78 | <button id="get-started-button-static-dashboard" class="cb-btn cb-primary-btn cb-get-started-btn"> |
| 79 | <?php echo esc_html__( 'Get Started', 'cookiebot' ); ?> |
| 80 | </button> |
| 81 | <img src="<?php echo \esc_url( $arrow_url ); ?>" |
| 82 | alt="arrow" |
| 83 | class="banner-arrow"> |
| 84 | </div> |
| 85 | </div> |
| 86 | </div> |
| 87 | |
| 88 | </div> |
| 89 | </div> |
| 90 | </div> |
| 91 | </div> |
| 92 | </div> |
| 93 | </div> |
| 94 |