퍼블리쉬 템플릿 적용 작업 및 팝업 형태로 변경
This commit is contained in:
parent
2e29d39eac
commit
e5dd33f837
59
src/main/webapp/WEB-INF/jsp/nlib/login/loginFormPopup.jsp
Normal file
59
src/main/webapp/WEB-INF/jsp/nlib/login/loginFormPopup.jsp
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
<%
|
||||||
|
/**
|
||||||
|
* <pre>
|
||||||
|
* @Class Name : loginFormPopup.jsp
|
||||||
|
*
|
||||||
|
* @Description : 로그인 SNS 연동 선택 팝업 화면
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
|
||||||
|
*
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @ ------------ -------- ---------------------------
|
||||||
|
* @ 수정일 수정자 수정내용
|
||||||
|
* @ ------------ -------- ---------------------------
|
||||||
|
* @ 2021. 7. 12. JSYOO 최초 생성
|
||||||
|
* @ 2021.10. 20. KNKIM 퍼블리쉬 템플릿 적용 작업 및 팝업 형태로 변경
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @author 이씨플라자 * DIGITALSHIP JSYOO
|
||||||
|
* @since 2021. 10. 20.
|
||||||
|
* @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>
|
||||||
|
function fn_signUp(){
|
||||||
|
location.href="${pageContext.request.contextPath}/login/memberSnsForm.do";
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="row Title">
|
||||||
|
<p>지방문화원 소장자료관</p>
|
||||||
|
<h3>${pageTitle }</h3>
|
||||||
|
</div>
|
||||||
|
<div class="inner">
|
||||||
|
<div class="row First">
|
||||||
|
<div class="Btn Naver"><button type="button" onclick="location.href='${naverUrl}';">네이버 아이디로 로그인</button></div>
|
||||||
|
<div class="Btn Kakao"><button type="button" onclick="location.href='${googleUrl}';">카카오 로그인</button></div>
|
||||||
|
<div class="Btn Google"><button type="button" onclick="location.href='${kakaoUrl}';">Google 계정으로 로그인</button></div>
|
||||||
|
</div>
|
||||||
|
<div class="row Text">
|
||||||
|
<p>회원가입하고 <span>대출/열람 서비스</span>를 이용해보세요!</p>
|
||||||
|
<p><a href="javascript:void(0)" onclick="fn_signUp()" class="join">회원가입</a></p>
|
||||||
|
</div>
|
||||||
|
<button type="button" class="login-close" onclick="fn_closeLayerPopup()"></button>
|
||||||
|
</div>
|
||||||
|
<div class="Bg"></div>
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user