<?php
/**
 * Created by PhpStorm.
 * User: Gael Wamba Musikingala
 * Date: 2019/05/21
 * Time: 8:33 AM
 */

//20190521 - Included the layout in wizard steps. - Gael
$stepData = json_decode($_COOKIE[$_SERVER["QUERY_STRING"]]);
$product = $stepData->product;

//print_rr($product);

$WizardContent = "
    <h1 class='text-center'>Product Selection</h1>
    <h5 class='text-center'>Which facility best suits your needs ?</h5>

    <div class='margin-top-30'></div>

    <div class='col-md-5 col-md-offset-1'>
        <h5 class='bold font-18px'>BullionGold Facility</h5>
        <p>Every day, more people return to using tried and tested products; products which are dependable and timeless.
            <br> The same should be true when it comes to making financial decisions.
            <br> Conveniently convert your hard-earned cash to newly minted Krugerrands with the BullionGold Facility. </p>
        <button type='button' class='btn purple btn-lg' id='sa-legal-BullionGold'>Select</button>
    </div>

    <div class='col-md-5 col-md-offset-1'>
        <h5 class='bold font-18px'>BarakaGold Facility</h5>
        <p>You believe financial decisions should honour your faith. We do too.
            <br> Allowing Muslim investors to store and accumulate their wealth in accordance with Islamic law, the BarakaGold facilities provide a truly Halaal investment solution.</p><br>
        <button type='button' class='btn green btn-lg' id='sa-legal-BarakaGold'>Select</button>
    </div>

    <div class='clearfix margin-bottom-40'></div>

    <div class='col-md-5 col-md-offset-1'>
        <div class='padding-top52px'></div>
        <a href='#'>
            <button type='button' class='btn purple btn-lg' id='backButton'>Back</button>
        </a>
    </div>
";
require("layout_basic.php");
?>
