| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<div class="frm-dashboard-banner frm-p-md"> |
| 7 |
<span class="frm-dashboard-banner-bg-shape"></span> |
| 8 |
<span class="frm-dashboard-banner-close"><?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon' ); ?></span> |
| 9 |
<div class="frm-flex-box frm-align-center"> |
| 10 |
<?php FrmAppHelper::icon_by_class( 'frmfont frm_speaker_icon' ); ?> |
| 11 |
<span class="frm-vertical-line"></span> |
| 12 |
<div> |
| 13 |
<h4><?php echo esc_html__( 'Welcome to Formidable Forms', 'formidable' ); ?> 🎉</h4> |
| 14 |
<p><?php echo esc_html__( 'Whether you\'re looking to create simple contact forms or complex survey forms, Formidable Forms has you covered.', 'formidable' ); ?></p> |
| 15 |
</div> |
| 16 |
<div class="frm-shrink-0"> |
| 17 |
<a target="_blank" href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( '', 'features' ) ); ?>" class="frm-button-secondary"><?php echo esc_html__( 'Check All Features', 'formidable' ); ?></a> |
| 18 |
</div> |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
|