welcome.php
24 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Challenge CTA on WPForms welcome activation screen HTML template. |
| 4 | * |
| 5 | * @since 1.6.2 |
| 6 | */ |
| 7 | |
| 8 | if ( ! \defined( 'ABSPATH' ) ) { |
| 9 | exit; |
| 10 | } |
| 11 | |
| 12 | ?> |
| 13 | <div class="challenge"> |
| 14 | <div class="block"> |
| 15 | <h1><?php esc_html_e( 'Take the WPForms Challenge', 'wpforms-lite' ); ?></h1> |
| 16 | <h6><?php esc_html_e( 'Create your first form with our guided setup wizard in less than 5 minutes to experience the WPForms difference.', 'wpforms-lite' ); ?></h6> |
| 17 | <div class="button-wrap"> |
| 18 | <a href="<?php echo esc_url( admin_url( 'admin.php?page=wpforms-builder' ) ); ?>" class="wpforms-btn wpforms-btn-lg wpforms-btn-orange"> |
| 19 | <?php esc_html_e( 'Start the WPForms Challenge', 'wpforms-lite' ); ?> |
| 20 | </a> |
| 21 | </div> |
| 22 | </div> |
| 23 | </div> |
| 24 |