| 1 |
<?php |
| 2 |
/** |
| 3 |
* Dashboard license management widget. |
| 4 |
* |
| 5 |
* @package Formidable |
| 6 |
*/ |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
die( 'You are not allowed to call this page directly.' ); |
| 10 |
} |
| 11 |
?> |
| 12 |
<div class="frm-dashboard-license-management"> |
| 13 |
<h3> |
| 14 |
<?php esc_html_e( 'License Key', 'formidable' ); ?> |
| 15 |
</h3> |
| 16 |
<span> |
| 17 |
<?php echo esc_html( FrmAppHelper::copy_for_lite_license() ); ?> |
| 18 |
</span> |
| 19 |
<div class="frm-flex-box frm-gap-xs"> |
| 20 |
<?php FrmDashboardHelper::show_connect_links(); ?> |
| 21 |
</div> |
| 22 |
</div> |
| 23 |
|