﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:import href ="RegisterationWizard.xslt"/>

    <xsl:template match="/">
        <xsl:variable name="TemplatePathURL" select="normalize-space(AjaxRequest/TemplateURL)"></xsl:variable>
        <div id="divRegister_Content">
            <table class="tableMaster" cellpadding="0" cellspacing="0" border="0">
                <tr>
                    <td colspan="2">
                        <table cellpadding="0" cellspacing="0">
                            <tr>
                                <!--<td>
                                    <img src="{$TemplatePathURL}Web/Images/vision_unselected.jpg" title="vision_unselected" BORDER="0"></img>
                                </td>
                                <td>
                                    <img src="{$TemplatePathURL}Web/Images/plan_unselected.jpg" title="plan_unselected" BORDER="0"></img>
                                </td>
                                <td>
                                    <img src="{$TemplatePathURL}Web/Images/community_unselected.png" title="community_unselected" BORDER="0"></img>
                                </td>
                                <td>
                                    <img src="{$TemplatePathURL}Web/Images/social_unselected.jpg" title="social_unselected" BORDER="0"></img>
                                </td>-->
                            </tr>
                        </table>
                    </td>
                </tr>
                <tr>
                    <td>
                        <img src="{$TemplatePathURL}Web/Images/AdPerson_Right.jpg" title="AdPerson" BORDER="0"></img>
                    </td>
                    <td style="padding-top: 10px;">
                        <div class="labelSize14">
                            Register For LifeSpace
                        </div>
                        <div class="labelSize13">
                            <!--“Allow me to introduce myself. I am your virtual coach and
                                        will guide you in getting started with LifeSpace.  But before
                                        we start, I need you to create your account. Please
                                        complete this quick registration form or click the Facebook
                                        Connect button below and we will be off and running!”-->
                            "Allow me to introduce myself. I am your virtual coach.
                            Please complete this quick registration form or click the
                            Facebook Connect button below and we will be off and running!"
                        </div>
                    </td>
                </tr>
                <tr>
                    <td colspan="2" style="padding-top: 10px;">
                        <xsl:call-template name ="RegisterationWizard">
                            <xsl:with-param name="APIKey" >
                                <xsl:value-of select="normalize-space(AjaxRequest/Params/APIKey)" />
                            </xsl:with-param>
                            <xsl:with-param name="HostName" >
                                <xsl:value-of select="normalize-space(AjaxRequest/HostName)" />
                            </xsl:with-param>                         
                            <xsl:with-param name="Email">
                                <xsl:value-of select="normalize-space(AjaxRequest/User/UserData/Email)"/>
                            </xsl:with-param>
                            <xsl:with-param name="Action">
                                <xsl:value-of select="normalize-space(AjaxRequest/Action)"/>
                            </xsl:with-param>
                            <xsl:with-param name="DateOfBirthMasterData" select="AjaxRequest/DateOfBirth/.">
                            </xsl:with-param>
                            <xsl:with-param name="TemplatePathURL" select="$TemplatePathURL"></xsl:with-param>
                        </xsl:call-template>
                    </td>
                </tr>
            </table>
        </div>
    </xsl:template>
</xsl:stylesheet>
