<?php
/**
 * Created by PhpStorm.
 * User: Gael Wamba Musikingala
 * Date: 2016/02/29
 * Time: 8:33 AM
 */

//20190510 - Included the layout in wizard steps. - Gael

$WizardContent = "
    <h1 class='text-center'>Review and Submit</h1>
    <h5 class='text-center'>Please check the details you provided and submit your Details <br> to become a Client </h5>

    <div class='review padding-top35px' id='companyInfo'> Investor Information <span class='icon-arrow-down reviewIcon'></span></div>
        <div class='results hidden' id='companyInfoResults'>
            ";
            // require (TEMPLATES.'/login/client/sa-legal/basic.php');
            // require (TEMPLATES.'/login/client/sa-legal/contact.php');
$WizardContent .= "
        </div>

        <div class='review padding-top35px' id='financialInfo'> Financial Information <span class='icon-arrow-down reviewIcon'></span></div>
        <div class='results hidden' id='financialInfoResults'>
            ";
            // require (TEMPLATES.'/login/client/sa-legal/contribution.php');
            // require (TEMPLATES.'/login/client/sa-legal/payment.php');
            // require (TEMPLATES.'/login/client/sa-legal/bank.php');
$WizardContent .= "
        </div>


        <form role='form' id='sa-legal-review'>
            <div class='form-body padding-top35px'>

            <div class='form-group form-md-line-input'>
                <div class='col-md-10'>
                    <div class='md-checkbox-inline'>
                        <div class='md-checkbox'>
                            <input type='checkbox' id='termsWebsite' name='termsSABullion' class='md-check'>
                            <label for='termsWebsite'>
                                <span class='inc'></span>
                                <span class='check'></span>
                                <span class='box'></span> I have read, understood and agree to the terms and conditions governing the use of the SA Bullion website <a href='#' id='terms'> available here </a></label>
                        </div>
                    </div>
                </div>
            </div>

            <div class='form-group form-md-line-input'>
                <div class='col-md-10'>
                    <div class='md-checkbox-inline'>
                        <div class='md-checkbox'>
                            <input type='checkbox' id='termsClient' name='termsClient' class='md-check'>
                            <label for='termsClient'>
                                <span class='inc'></span>
                                <span class='check'></span>
                                <span class='box'></span> I have read, understood and agree to the terms and conditions contained in the client mandate <a href='#' id='mandate'> available here </a>
                            </label>
                        </div>
                    </div>
                </div>
            </div>

            <div class='clearfix margin-bottom-40'></div>

            <div class='form-actions noborder button-right'>
                <div class='padding-top52px'></div>
                <a href='#'>
                    <button type='button' class='btn purple btn-lg' id='submit'>Submit</button>
                </a>
            </div>
        </form>
    </div>
";

require("layout_basic.php");

//echo "<div id='PDF' style='margin: 40px; display: none' >".require (ROOT.'/pdf/clients/sa-legal.php')."</div>";

?>