﻿<?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:template match="/">
        <xsl:choose>
            <xsl:when test="count(Coupon/CouponDetail) > 0">
                <div align="left" class="labelComment" style="font-weight: bold;">
                    <xsl:value-of select="normalize-space(Coupon/CouponDetail/Package)"></xsl:value-of>
                </div>
                <div align="left" class="labelComment">
                    <xsl:value-of select="normalize-space(Coupon/CouponDetail/Description)"></xsl:value-of>
                </div>
            </xsl:when>
            <xsl:otherwise>
                <div align="center" style="color: gray;">
                    <div>The given code is not valid.</div>
                    <div>
                        <a href="mailto:AccountServices@LifeSpace.com">
                            Request an Invitation Code
                        </a>
                    </div>
                </div>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>
