71 lines
2.3 KiB
Plaintext
71 lines
2.3 KiB
Plaintext
<%
|
|
/**
|
|
* <pre>
|
|
* @Class Name : loginPreSet.jsp
|
|
*
|
|
* @Description : 로그인폼 사전 처리 페이지 이동
|
|
*
|
|
*
|
|
* @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
|
|
*
|
|
* </pre>
|
|
*
|
|
* @ ------------ -------- ---------------------------
|
|
* @ 수정일 수정자 수정내용
|
|
* @ ------------ -------- ---------------------------
|
|
* @ 2021. 10.13. KNKIM 최초 생성
|
|
*
|
|
*
|
|
* @author 이씨플라자 * DIGITALSHIP KNKIM
|
|
* @since 2021. 10.13.
|
|
* @version 1.0
|
|
*
|
|
*/
|
|
%>
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %>
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
|
|
|
<c:set var="pageTitle">처리중입니다</c:set>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
fn_setPageTitle("${pageTitle}");
|
|
$("#frmLoginProc").submit();
|
|
})
|
|
</script>
|
|
|
|
<!-- 로그인 섹션 -->
|
|
<section class="location join">
|
|
|
|
<form id="frmLoginProc" name="frmLoginProc" action="${url}" method="POST">
|
|
<input type="hidden" name="message" id="message" value="${message }" />
|
|
</form>
|
|
|
|
<h2 class="blind">로그인 섹션영역</h2>
|
|
<div class="inner">
|
|
<div class="row-top">
|
|
<div class="location-box">
|
|
<ul class="loc">
|
|
<li>HOME</li>
|
|
<li class="on">로그인</li>
|
|
</ul>
|
|
<ul class="tit">
|
|
<li><span>로그인</span></li>
|
|
</ul>
|
|
</div>
|
|
<div class="arr"><img src="/images/icon/icon-join-arr2.png" alt="화살표 아이콘"></div>
|
|
</div>
|
|
<div class="row-bottom">
|
|
<div class="join-box">
|
|
<div class="row Text">
|
|
<p>처리중입니다. 잠시만 기다려 주시기 바랍니다.<br>${message }</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|