# wpfunnels/trunk/admin/modules/createFunnel/views/view.php

WPFunnels – Funnel Builder for WooCommerce with Checkout &amp; One Click Upsell, version trunk. 41 lines.

- Page: https://pluginprobe.com/plugins/wpfunnels/trunk/code/admin/modules/createFunnel/views/view.php
- Raw: https://pluginprobe.com/plugins/wpfunnels/trunk/raw/admin/modules/createFunnel/views/view.php
- Modified: 2022-12-22T09:56:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpfunnels/trunk/code/admin/modules/createFunnel/views/view.php#L10-L20`.

```php
<?php
/**
 * View create funnel 
 * 
 * @package
 */
    $is_pro_active = false;
?>
<div class="wpfnl">
    <div id="templates-library"></div>
    <div class="wpfnl-dashboard">
        <nav class="wpfnl-dashboard__nav">
            <?php require_once WPFNL_DIR . '/admin/partials/dashboard-nav.php'; ?>
        </nav>

        <div class="dashboard-nav__content">
            <div class="wpfnl-dashboard__header create-funnel__header">
                <div class="title">
                    <h1><?php echo __('Create A Funnel', 'wpfnl'); ?></h1>
                    <span class="subtitle"><?php echo __('Choose a template to start funnel', 'wpfnl'); ?></span>
                </div>

                <a href="#" class="btn-default">
                    <?php
                        require WPFNL_DIR . '/admin/partials/icons/play-icon.php';
                        echo __('How to use this funnel', 'wpfnl');
                    ?>
                </a>
            </div>
            <!-- /create-funnel__header -->

            <div id="templates-library">

            </div>
            <!-- /wpfnl-create-funnel__inner-content -->

        </div>
    </div>
</div>
<!-- /.wpfnl -->

```
