|
|
|
@ -1,6 +1,52 @@
|
|
|
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" session="false"%>
|
|
|
|
|
<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%>
|
|
|
|
|
<jsp:include page="/WEB-INF/jsp/include/head.jsp" />
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html
|
|
|
|
|
lang="kr"
|
|
|
|
|
class="light-style layout-navbar-fixed layout-menu-fixed "
|
|
|
|
|
dir="ltr"
|
|
|
|
|
data-theme="theme-default"
|
|
|
|
|
data-assets-path="<c:url value="/resources/"/>"
|
|
|
|
|
data-template="vertical-menu-template-starter">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>과태료통합관리시스템</title>
|
|
|
|
|
|
|
|
|
|
<!-- Favicon -->
|
|
|
|
|
<link rel="icon" type="image/x-icon" href="<c:url value="/resources/image/favicon.ico"/>" />
|
|
|
|
|
|
|
|
|
|
<!-- Fonts -->
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" >
|
|
|
|
|
|
|
|
|
|
<!-- Icons. Uncomment required icon fonts -->
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/3rd-party/sneat/fonts/boxicons.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/3rd-party/sneat/fonts/fontawesome.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/3rd-party/sneat/fonts/flag-icons.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/css/fims/framework/common/xit-icon.css"/>" />
|
|
|
|
|
<!-- Core CSS -->
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/css/fims/framework/common/xit-core.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/3rd-party/sneat/css/theme-default.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/3rd-party/sneat/css/docs.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/css/fims/framework/common/xit-core-extend.css"/>" />
|
|
|
|
|
|
|
|
|
|
<!-- Vendors CSS -->
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/3rd-party/sneat/libs/perfect-scrollbar/perfect-scrollbar.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/css/styles.css"/>" />
|
|
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/css/fims/framework/common/common.css"/>"/>
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/3rd-party/jquery-ui/1.13.2/themes/redmond/jquery-ui.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/lib/fims/framework/datepicker/datepicker.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/3rd-party/tui/grid/4.21.5/tui-grid/tui-grid.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/css/fims/framework/common/xit-tui-grid.css"/>" />
|
|
|
|
|
<link rel="stylesheet" href="<c:url value="/resources/3rd-party/tui/grid/4.21.5/tui-pagination/tui-pagination.css"/>" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<link href="<c:url value='/'/>resources/css/fims/framework/oldcommon.css" rel="stylesheet" type="text/css" >
|
|
|
|
|
<link href="<c:url value='/'/>resources/css/fims/framework/login.css" rel="stylesheet" type="text/css" >
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
@ -13,12 +59,10 @@
|
|
|
|
|
<form id="formAuthentication" method="post">
|
|
|
|
|
<div class="input_wrap">
|
|
|
|
|
<div class="input-group">
|
|
|
|
|
<label for="userId" hidden>계정</label>
|
|
|
|
|
<input type="text" id="userId" value="${cookie['account']}"
|
|
|
|
|
required title="계정 입력" class="typeText required form-control inp-long" placeholder="계정" autofocus/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="input-group input-group-merge mt-2">
|
|
|
|
|
<label for="password" hidden>비밀번호</label>
|
|
|
|
|
<input type="password" id="password"
|
|
|
|
|
required title="비밀번호 입력" class="typePassword required form-control inp-long" placeholder="비밀번호" />
|
|
|
|
|
<span class="input-group-text cursor-pointer"><i class="bx bxs-lock"></i></span>
|
|
|
|
@ -52,6 +96,7 @@ function login() {
|
|
|
|
|
account:$("#userId").val(),
|
|
|
|
|
password:$("#password").val(),
|
|
|
|
|
institute:"default"
|
|
|
|
|
<%--, rememberCredentials:true--%>
|
|
|
|
|
};
|
|
|
|
|
json.post({
|
|
|
|
|
url:wctx.url("/login.do"),
|
|
|
|
@ -72,13 +117,14 @@ function login() {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(function(){
|
|
|
|
|
$("#formAuthentication input").onEnterPress(login);
|
|
|
|
|
if ($("#userId").val())
|
|
|
|
|
$("#password").focus();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 회원가입 팝업
|
|
|
|
|
*/
|
|
|
|
|