index.jsp 400 B

12345678910111213141516
  1. <%@ page contentType="text/html;charset=UTF-8"%>
  2. <%@ include file="/WEB-INF/include/taglibs.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <%@ include file="/WEB-INF/include/common.jsp"%>
  7. <script type="text/javascript">
  8. $(function(){
  9. $("#indexForm").submit();
  10. });
  11. </script>
  12. </head>
  13. <body>
  14. <form id="indexForm" action="${ctx}/login.action" method="post"></form>
  15. </body>
  16. </html>