<?php
/**
 * Created by PhpStorm.
 * User: roysinclair
 * Date: 2016/02/29
 * Time: 8:33 AM
 */

//20190510 - Included the layout in wizard steps. - Gael

$product = "";
if (isset($_COOKIE["product"])) {
    $product = $_COOKIE["product"];

}

//print_rr($product);

$WizardContent = "
    <h1 class='text-left hFont'>Product Selection</h1>
    <h5 class='text-left'>Which facility best suits your needs ?</h5>
    
    <div class='margin-top-30'></div>
<div class='bGoldBackground'>
    <div class=''>
        <h5 class='bold font-18px' style='color:#ffff !important; margin-top: 30px'>BullionGold Facility</h5>
        <hr style='width:70px; margin: auto;'>
        <p>Every day, more people return to using tried and tested products; products which are dependable and timeless.
            <br style='margin-bottom: 10px'> The same should be true when it comes to making financial decisions.
            <br style='margin-bottom: 10px'> Conveniently convert your hard-earned cash to newly minted Krugerrands with the BullionGold Facility. </p>
        
        <div class='md-radio' class='btn purple' >
                            <input type='radio' id='sa-natural-BullionGold' name='productSelection' class='md-check'>
                            <label for='sa-natural-BullionGold' style=''>
                                <span class='inc'style='left:20px !important;'></span>
                                <span class='check' style='background: #fff !important; border: 2px solid #fff !important; left:40px !important;'></span>
                                <span class='box' style='border: 2px solid #ffff !important; left:40px !important;'></span> 
                                Select BullionGold Facility
                            </label>
                        </div>
    </div>
</div>
<div class='HGoldBackground'>
 <div class=' '>        
    <h5 class='bold font-18px' style='color: #ffff !important; margin-top: 30px'>HasanaGold Facility</h5>
        <hr style='width:70px; margin: auto;'>
        <p>You believe financial decisions should honour your faith. We do too.
            <br style='margin-bottom: 10px'> Allowing Muslim investors to store and accumulate their wealth in accordance with Islamic law, the HasanaGold facilities provide a truly Halaal investment solution.</p>
        <div class='md-radio' style='margin-top: 57px;' class='btn green'>
                            <input type='radio' id='sa-natural-HasanaGold' name='productSelection' class='md-check'>
                            <label for='sa-natural-HasanaGold' style=''>
                                <span class='inc' style='left:20px !important;'></span>
                                <span class='check' style='background: #fff !important; border: 2px solid #fff !important;left:40px !important;' ></span>
                                <span class='box' style='border: 2px solid #ffff !important; left:40px !important;'></span> 
                                Select HasanaGold Facility
                            </label>
        </div>
    </div>
</div>
    <div class='clearfix margin-bottom-40'></div>

    <div class='form-actions noborder button-right' >
        <div class='padding-top52px'></div>
        <a href='#'class='padding-right'>
            <button type='button' class='btn purple btn-lg' id='sa-natural-product-saveData'>Continue</button>
        </a>
    </div>

    <div class='form-actions noborder'>
        <div class='padding-top52px'></div>
        <a href='#'class='padding-left'>
            <button type='button' class='btn white btn-lg' id='backButton'>Back</button>
        </a>
    </div>
";
require("layout_basic.php");
?>


