passwordExpired.ftl 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <!DOCTYPE HTML >
  2. <html>
  3. <head>
  4. <#include "layout/header.ftl"/>
  5. <#include "layout/common.cssjs.ftl"/>
  6. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  7. <title><@locale code="login.password.expired" /></title>
  8. </head>
  9. <body>
  10. <div id="top">
  11. <#include "layout/nologintop.ftl"/>
  12. </div>
  13. <div id="content">
  14. <div class="container">
  15. <table width="100%">
  16. <tr>
  17. <td>
  18. <div>
  19. <form method="post" type="label" autoclose="true" action="<@base/>/safe/changeExpiredPassword">
  20. <table class="table table-bordered" >
  21. <tbody>
  22. <tr>
  23. <th colspan="2"><@locale code="login.password.expired.tip" /></th>
  24. </tr>
  25. <tr>
  26. <th><@locale code="userinfo.displayName" /> :</th>
  27. <td>
  28. <input readonly type="text" id="displayName" name="displayName" class="form-control" title="" value="${model.displayName}"/>
  29. </td>
  30. </tr>
  31. <tr>
  32. <th><@locale code="userinfo.username" /> :</th>
  33. <td>
  34. <input readonly type="text" id="username" name="username" class="form-control" title="" value="${model.username}"/>
  35. </td>
  36. </tr>
  37. <tr>
  38. <th><@locale code="login.password.newPassword" />:</th>
  39. <td>
  40. <input type="password" id="newPassword" name="newPassword" class="form-control" title="" value=""/>
  41. </td>
  42. </tr>
  43. <tr>
  44. <th><@locale code="login.password.confirmPassword" />:</th>
  45. <td nowrap>
  46. <input type="password" id="confirmPassword" name="confirmPassword" class="form-control" title="" value=""/>
  47. </td>
  48. </tr>
  49. <tr>
  50. <td colspan="2" class="center">
  51. <input id="_method" type="hidden" name="_method" value="post"/>
  52. <input class="button btn btn-lg btn-primary" style="width:100px" type="submit" id="submitBtn" value="<@locale code="button.text.save" />"/>
  53. </td>
  54. </tr>
  55. </tbody>
  56. </table>
  57. </form>
  58. </div>
  59. </td>
  60. </tr>
  61. </table>
  62. </div>
  63. </div>
  64. <div id="footer">
  65. <#include "layout/footer.ftl"/>
  66. </div>
  67. </body>
  68. </html>