dashboard
3 years ago
buy-template.php
2 years ago
buy.php
2 years ago
login.php
3 years ago
no-customer.php
3 years ago
product-canvas.php
3 years ago
no-customer.php
14 lines
| 1 | <sc-card style="font-size: 16px;"> |
| 2 | <sc-text tag="h2" style="--font-size: var(--sc-font-size-x-large);"> |
| 3 | <?php esc_html_e( 'It looks like you are not yet a customer.', 'surecart' ); ?></sc-text> |
| 4 | <sc-text tag="p" style="--color: var(--sc-font-color-gray-500)"> |
| 5 | <?php esc_html_e( 'You must first purchase something to access your dashboard.', 'surecart' ); ?> |
| 6 | </sc-text> |
| 7 | <sc-button type="primary" href="<?php echo esc_url( get_home_url() ); ?>"> |
| 8 | <?php esc_html_e( 'Home', 'surecart' ); ?> |
| 9 | </sc-button> |
| 10 | <sc-button type="text" href="<?php echo esc_url( wp_logout_url( get_home_url() ) ); ?>"> |
| 11 | <?php esc_html_e( 'Logout', 'surecart' ); ?> |
| 12 | </sc-button> |
| 13 | </sc-card> |
| 14 |