1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
- <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <link rel="shortcut icon" href="/images/common/favicon.ico" type="image/x-icon">
- <link rel="icon" href="/images/common/favicon.ico" type="image/x-icon">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <!-- <link rel="stylesheet" type="text/css" href="/css/common/common-user.css"> -->
- <!-- <link rel="stylesheet" type="text/css" href="/css/user/desktop/layout/layout.css"> -->
- <!-- <script type="text/javascript" src="/plugins/jquery/jquery-3.3.1.min.js"></script> -->
- <!-- <script type="text/javascript" src="/js/common/MKCommon.js"></script> -->
- <title>${data._TITLE}</title>
- <!-- <link rel="stylesheet" type="text/css" href="/css/admin/desktop/login/login.css"> -->
- <!-- <link rel="stylesheet" type="text/css" href="/css/admin/desktop/feed/feed.css"> -->
- <script type="text/javascript">
- window.onload = function(){
- document.getElementById( "userId" ).focus();
- };
- </script>
- </head>
- <body>
- <div class="login-wrap">
- <header>
- <div class="logo">
- <h1>
- <a href="/Admin">${data._TITLE}</a>
- </h1>
- </div>
- </header>
- <section>
- <form:form method="post" action="/test2" modelAttribute="sdto">
- <ul>
- <li class="top">
- <input type="text" id="userId" name="userId" placeholder="Id" tabindex="1" title="사용자 아이디" required autocomplete="off" />
- </li>
- <li>
- <input type="password" name="userPw" placeholder="Password" tabindex="2" title="사용자 비밀번호" required autocomplete="off" />
- </li>
- <li>
- <button type="submit" tabindex="3">Login</button>
- </li>
- </ul>
- </form:form>
- </section>
- </div>
- </body>
- </html>
|