misc
[aramzamzam-commons.git] / tapestry-quickstart / src / main / webapp / Recover.tml
blob60779e9a54403fe8eb910a1c089b54b9d7b623d7
1 <t:layout t:title="index" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
2 <t:delegate t:to="activeBlock"/>
3 <t:block t:id="step1">
4         <t:form t:id="requestFrom">
5                 <label for="username"/>
6                 <input t:type="textField" t:id="username"/>
7                 <button t:type="submit" value="${message:recover}"/>
8         </t:form>
9 </t:block>
10 <t:block t:id="step2">
11         ${recoverUrl}
12 </t:block>
13 <t:block t:id="step3">
14         <t:form t:id="changePasswordForm">
15                 <label for="password"/>
16                 <input t:type="textField" t:id="password"/>
17                 <button t:type="submit" value="${message:change}"/>
18         </t:form>
19 </t:block>
21 <t:block t:id="invalidToken">
22         token invalid
23         <t:delegate t:to="component:requestFrom"/>
24 </t:block>
26 <t:block t:id="success">
27         success
28         <t:pageLink page="index">index</t:pageLink>
29 </t:block>
30 </t:layout>