setup-other.jsp 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  4. <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
  5. <%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>
  6. <html>
  7. <head profile="<c:url value="/profile.txt"/>">
  8. <title><fmt:message key="setup.other.title"/></title>
  9. <link media="screen" href="<c:url value="/css/global.css"/>" type="text/css" rel="stylesheet" />
  10. </head>
  11. <body>
  12. <h1><fmt:message key="setup.other.title"/></h1>
  13. <p><fmt:message key="setup.other.intro"/></p>
  14. <form method="post" action="<c:url value="/setup/wizard.do"/>">
  15. <dl class="menu">
  16. <dt><fmt:message key="setup.mail.from.displayName"/></dt>
  17. <dd>
  18. <spring:bind path="command.settings['mail.from']">
  19. <input type="text" class="filepath"
  20. name="${status.expression}"
  21. value="${status.value}"/> <br />
  22. </spring:bind>
  23. <fmt:message key="setup.mail.from.caption"/>
  24. </dd>
  25. <dt><fmt:message key="setup.crypto.key.displayName"/></dt>
  26. <dd>
  27. <spring:bind path="command.settings['crypto.key']">
  28. <input type="text"
  29. name="${status.expression}"
  30. value="${status.value}"
  31. maxlength="20"/> <br />
  32. </spring:bind>
  33. <fmt:message key="setup.crypto.key.caption"/>
  34. </dd>
  35. <dt><fmt:message key="setup.crypto.pbe.salt.displayName"/></dt>
  36. <dd>
  37. <spring:bind path="command.settings['crypto.pbe.salt']">
  38. <input type="text"
  39. name="${status.expression}"
  40. value="${status.value}"
  41. maxlength="8"/> <br />
  42. </spring:bind>
  43. <fmt:message key="setup.crypto.pbe.salt.caption"/>
  44. </dd>
  45. <dt><fmt:message key="setup.crypto.salt.displayName"/></dt>
  46. <dd>
  47. <spring:bind path="command.settings['crypto.salt']">
  48. <input type="text"
  49. name="${status.expression}"
  50. value="${status.value}"
  51. maxlength="20"/> <br />
  52. </spring:bind>
  53. <fmt:message key="setup.crypto.salt.caption"/>
  54. </dd>
  55. </dl>
  56. <div>
  57. <input type="submit" name="_target3" value="<fmt:message key="back.displayName"/>"/>
  58. <input type="submit" name="_target5" value="<fmt:message key="continue.displayName"/>"/>
  59. </div>
  60. </form>
  61. </body>
  62. </html>