您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ChangePasswordPage.html 1.2KB

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"
  4. xml:lang="en"
  5. lang="en">
  6. <wicket:extend>
  7. <body onload="document.getElementById('password').focus();">
  8. <div>
  9. <form style="text-align:center;" wicket:id="passwordForm">
  10. <center>
  11. <table class="plain">
  12. <tr>
  13. <th><wicket:message key="gb.password"></wicket:message> &nbsp;</th>
  14. <td class="edit"><input type="password" wicket:id="password" id="password" size="30" tabindex="1" /></td>
  15. </tr>
  16. <tr>
  17. <th><wicket:message key="gb.confirmPassword"></wicket:message> &nbsp;</th>
  18. <td class="edit"><input type="password" wicket:id="confirmPassword" size="30" tabindex="2" /></td>
  19. </tr>
  20. </table>
  21. <div class="form-actions">
  22. <input class="btn btn-appmenu" type="submit" wicket:message="value:gb.save" wicket:id="save" tabindex="3" />
  23. <input class="btn" type="submit" wicket:message="value:gb.cancel" wicket:id="cancel" tabindex="4" />
  24. </div>
  25. </center>
  26. </form>
  27. </div>
  28. </body>
  29. </wicket:extend>
  30. </html>