| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<div id="frm_license_top" class="frm_unauthorized_box"> |
| 7 |
<p id="frm-connect-btns" class="frm-show-unauthorized"> |
| 8 |
<a href="<?php echo esc_url( FrmAddonsController::connect_link() ); ?>" class="button-primary frm-button-primary"> |
| 9 |
<?php esc_html_e( 'Connect an Account', 'formidable' ); ?> |
| 10 |
</a> |
| 11 |
or |
| 12 |
<a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'settings-license' ) ); ?>" target="_blank" class="button-secondary frm-button-secondary"> |
| 13 |
<?php esc_html_e( 'Get Formidable Now', 'formidable' ); ?> |
| 14 |
</a> |
| 15 |
</p> |
| 16 |
|
| 17 |
<div id="frm-using-lite" class="frm-show-unauthorized"> |
| 18 |
<p>You're using Formidable Forms Lite - no license needed. Enjoy! 🙂</p> |
| 19 |
<p> |
| 20 |
<?php |
| 21 |
printf( |
| 22 |
/* translators: %1$s: Start link HTML, %2$s: End link HTML */ |
| 23 |
esc_html__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'formidable' ), |
| 24 |
'<a href="' . esc_url( FrmAppHelper::admin_upgrade_link( 'settings-license' ) ) . '">', |
| 25 |
'</a>' |
| 26 |
); |
| 27 |
?> |
| 28 |
</p> |
| 29 |
</div> |
| 30 |
</div> |
| 31 |
|
| 32 |
<div class="frm_pro_license_msg frm_hidden"></div> |
| 33 |
|