﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
	<xsl:output method="xml" indent="yes"/>

	<xsl:template match="/">
		<xsl:variable name="HostName" select="normalize-space(AjaxRequest/HostName)"></xsl:variable>
		<xsl:variable name="TemplateURL" select="normalize-space(AjaxRequest/TemplateURL)"></xsl:variable>
		<xsl:variable name="IsAuthenticated" select="normalize-space(AjaxRequest/IsAuthenticated)"></xsl:variable>
		<xsl:variable name="ClubName" select="normalize-space(AjaxRequest/Brand/PortalItem)"></xsl:variable>

		<xsl:choose>
			<xsl:when test="$IsAuthenticated  = 'False'">
				<div class="labelError TournamentClubBackground">
					<span style="padding:5px;">You are not authorized to view this page.</span>
				</div>
			</xsl:when>
			<xsl:otherwise>
				<table class="tableMaster" cellpadding="0" cellspacing="0">
					<tr>
						<td>
							<div class="paddingLeft10 TournamentShareHeader" align="left" style="background-color:#47B5E7;line-height:25px;">
								Welcome to the <xsl:value-of select="$ClubName"/>!
							</div>
						</td>
						<td width="5px">
							&#xa0;
						</td>
						<td width="50%">
							<div class="paddingLeft10 TournamentShareHeader" align="left" style="background-color:#47B5E7;line-height:25px;">
								&#xa0;
							</div>
						</td>
					</tr>
					<tr>
						<td class="TournamentClubBackground textCenter">
							<div class="margin10 paddingTop20">
								<div class="TournamentWinnerRound1Header2" align="center">
									CONGRATULATIONS
								</div>
								<div class="TournamentWinnerRound1Header2" align="center">
									<span>&amp;</span>
								</div>
								<div class="TournamentWinnerRound1Header2 marginBottom15" align="center">
									Welcome to the
								</div>
								<div class="marginTop25">
									<img alt="" src="{$TemplateURL}/Web/Images/Ver_2_0/Club/PPC Logo 150 x 50.png"></img>
								</div>
							</div>
						</td>
						<td width="5px">
							&#xa0;
						</td>
						<td width="50%" class="TournamentClubBackground paddingTop20">
							<div class="margin10">
								<div class="goalUpdateSubHeadline marginBottom20 textJustify">
									Congratulations on becoming one of the first Party
									Pong Club Members. We thank you for joining and
									are excited for you to start cashing in on rewards for
									doing what you love doing most...playing pong! To
									receive your FREE membership card in the mail,
									please <a href="#">
										<span class="aboutLinksClub">click here</span>
									</a>. You will receive an email with
									more information on your membership.
								</div>
								<div class="goalUpdateSubHeadline marginBottom15">
									You may now...
								</div>
								<ul class="marginBottom20 marginLeft5" style="list-style-type:none;padding:0px;">
									<li class="marginBottom5">
										<a href="http://{$HostName}/PrizeCatalog">
											<span class="aboutLinksClub">EXPLORE PRIZE CATALOG</span>
										</a>
									</li>
									<li class="marginBottom5">
										<a href="http://{$HostName}/FindTournaments">
											<span class="aboutLinksClub">FIND TOURNAMENTS</span>
										</a>
									</li>
									<li class="marginBottom5">
										<a href="http://{$HostName}/TellYourFreind">
											<span class="aboutLinksClub">Tell Your Freinds to Join</span>
										</a>
									</li>
								</ul>
							</div>
						</td>
					</tr>
				</table>
			</xsl:otherwise>
		</xsl:choose>

	</xsl:template>
</xsl:stylesheet>
