| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
- xmlns:eat="http://msqr.us/xsd/ieat"
- xmlns:xweb="http://msqr.us/xsd/jaxb-web"
- exclude-result-prefixes="eat xweb">
- <!-- imports -->
- <xsl:import href="tmpl/default-layout.xsl"/>
-
- <!-- layout variables -->
- <xsl:variable name="layout.global.nav.page" select="'forgot-password'"/>
-
- <xsl:template match="xweb:x-data" mode="page-title">
- <xsl:value-of select="key('i18n','forgot-password.title')"/>
- </xsl:template>
-
- <xsl:template match="xweb:x-data" mode="page-body">
- <div class="intro">
- <xsl:value-of select="key('i18n','forgot-password.intro')"/>
- </div>
- <form method="post" action="{$web-context}{$ctx/xweb:path}">
- <table class="form">
- <tr>
- <th>
- <xsl:value-of select="key('i18n','login.displayName')"/>
- </th>
- <td colspan="3">
- <input type="text" name="login" maxlength="64"/>
- </td>
- </tr>
- <tr>
- <th/>
- <td>
- <input type="submit" value="{key('i18n','submit.displayName')}"/>
- </td>
- </tr>
- </table>
- <input type="hidden" name="password" value="forgot"/>
- </form>
- <script type="text/javascript" xml:space="preserve">
- <xsl:comment>
- document.forms[0].elements['login'].focus();
- //</xsl:comment>
- </script>
- </xsl:template>
-
- </xsl:stylesheet>
|