login.jsp 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  2. <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
  3. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
  4. <!DOCTYPE html>
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head>
  7. <link rel="shortcut icon" href="/images/common/favicon.ico" type="image/x-icon">
  8. <link rel="icon" href="/images/common/favicon.ico" type="image/x-icon">
  9. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  11. <!-- <link rel="stylesheet" type="text/css" href="/css/common/common-user.css"> -->
  12. <!-- <link rel="stylesheet" type="text/css" href="/css/user/desktop/layout/layout.css"> -->
  13. <!-- <script type="text/javascript" src="/plugins/jquery/jquery-3.3.1.min.js"></script> -->
  14. <!-- <script type="text/javascript" src="/js/common/MKCommon.js"></script> -->
  15. <title>${data._TITLE}</title>
  16. <!-- <link rel="stylesheet" type="text/css" href="/css/admin/desktop/login/login.css"> -->
  17. <!-- <link rel="stylesheet" type="text/css" href="/css/admin/desktop/feed/feed.css"> -->
  18. <script type="text/javascript">
  19. window.onload = function(){
  20. document.getElementById( "userId" ).focus();
  21. };
  22. </script>
  23. </head>
  24. <body>
  25. <div class="login-wrap">
  26. <header>
  27. <div class="logo">
  28. <h1>
  29. <a href="/Admin">${data._TITLE}</a>
  30. </h1>
  31. </div>
  32. </header>
  33. <section>
  34. <form:form method="post" action="/test2" modelAttribute="sdto">
  35. <ul>
  36. <li class="top">
  37. <input type="text" id="userId" name="userId" placeholder="Id" tabindex="1" title="사용자 아이디" required autocomplete="off" />
  38. </li>
  39. <li>
  40. <input type="password" name="userPw" placeholder="Password" tabindex="2" title="사용자 비밀번호" required autocomplete="off" />
  41. </li>
  42. <li>
  43. <button type="submit" tabindex="3">Login</button>
  44. </li>
  45. </ul>
  46. </form:form>
  47. </section>
  48. </div>
  49. </body>
  50. </html>