forgot-password-complete.xsl 779 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
  3. xmlns:eat="http://msqr.us/xsd/ieat"
  4. xmlns:xweb="http://msqr.us/xsd/jaxb-web"
  5. exclude-result-prefixes="eat xweb">
  6. <!-- imports -->
  7. <xsl:import href="tmpl/default-layout.xsl"/>
  8. <!-- layout variables -->
  9. <xsl:variable name="layout.global.nav.page" select="'forgot-password'"/>
  10. <xsl:template match="xweb:x-data" mode="page-title">
  11. <xsl:value-of select="key('i18n','forgot-password-complete.title')"/>
  12. </xsl:template>
  13. <xsl:template match="xweb:x-data" mode="page-body">
  14. <div class="intro">
  15. <xsl:value-of select="key('i18n','forgot-password-complete.intro')"
  16. disable-output-escaping="yes"/>
  17. </div>
  18. </xsl:template>
  19. </xsl:stylesheet>