| 1 |
<?php |
| 2 |
/** |
| 3 |
* View builder not active |
| 4 |
* |
| 5 |
* @package |
| 6 |
*/ |
| 7 |
$is_pro_active = false; |
| 8 |
?> |
| 9 |
|
| 10 |
|
| 11 |
<div class="wpfnl"> |
| 12 |
<div id="templates-library"></div> |
| 13 |
<div class="wpfnl-dashboard"> |
| 14 |
<nav class="wpfnl-dashboard__nav"> |
| 15 |
<?php require_once WPFNL_DIR . '/admin/partials/dashboard-nav.php'; ?> |
| 16 |
</nav> |
| 17 |
|
| 18 |
<div class="dashboard-nav__content"> |
| 19 |
<div class="wpfnl-dashboard__header create-funnel__header"> |
| 20 |
<div class="title"> |
| 21 |
<h1><?php echo __('Create A Funnel', 'wpfnl'); ?></h1> |
| 22 |
<span class="subtitle"><?php echo __('Choose a template to start funnel', 'wpfnl'); ?></span> |
| 23 |
</div> |
| 24 |
|
| 25 |
<a href="#" class="btn-default"> |
| 26 |
<?php |
| 27 |
require WPFNL_DIR . '/admin/partials/icons/play-icon.php'; |
| 28 |
echo __('How to use this funnel', 'wpfnl'); |
| 29 |
?> |
| 30 |
</a> |
| 31 |
</div> |
| 32 |
<!-- /create-funnel__header --> |
| 33 |
|
| 34 |
<div class="wpfnl-create-funnel__inner-content"> |
| 35 |
<div class="wpfnl-create-funnel__template-wrapper"> |
| 36 |
|
| 37 |
<div class="create-funnel__single-template create-funnel__from-scratch"> |
| 38 |
<p>Please activate <strong><?php echo ucfirst($this->builder); ?></strong> to see the templates. </p> |
| 39 |
</div> |
| 40 |
|
| 41 |
<div class="create-funnel__single-template create-funnel__from-scratch"> |
| 42 |
<a href="#" id="wpfnl-create-funnel" class="btn-default"> |
| 43 |
<?php echo __('Start From scratch', 'wpfnl'); ?> |
| 44 |
</a> |
| 45 |
<span class="helper-txt"><?php echo __('User step by step to create you own funnel', 'wpfnl'); ?></span> |
| 46 |
</div> |
| 47 |
<!-- /create-funnel__single-template --> |
| 48 |
</div> |
| 49 |
<!-- /wpfnl-create-funnel__template-wrapper --> |
| 50 |
|
| 51 |
</div> |
| 52 |
<!-- /wpfnl-create-funnel__inner-content --> |
| 53 |
|
| 54 |
</div> |
| 55 |
</div> |
| 56 |
|
| 57 |
</div> |
| 58 |
<!-- /.wpfnl --> |
| 59 |
|