setup-welcome.jsp 797 B

123456789101112131415161718192021
  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. <html>
  6. <head profile="<c:url value="/profile.txt"/>">
  7. <title><fmt:message key="title"/></title>
  8. <link media="screen" href="<c:url value="/css/global.css"/>" type="text/css" rel="stylesheet" />
  9. </head>
  10. <body>
  11. <h1><fmt:message key="title"/></h1>
  12. <p><fmt:message key="setup.welcome.intro"/></p>
  13. <form method="post" action="<c:url value="/setup/wizard.do"/>">
  14. <div>
  15. <input type="submit" name="_target1" value="<fmt:message key="continue.displayName"/>"/>
  16. </div>
  17. </form>
  18. </body>
  19. </html>