itsm_ysm/src/main/webapp/WEB-INF/jsp/nlib/member/selectMemberJoiningInfo.jsp

52 lines
1.4 KiB
Plaintext

<%
/**
* <pre>
* @Class Name : selectMemberJoiningInfo.jsp
*
* @Description : 회원가입 이용약관
*
*
* @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
*
* </pre>
*
* @ ------------ -------- ---------------------------
* @ 수정일 수정자 수정내용
* @ ------------ -------- ---------------------------
* @ 2021. 7. 12. JSYOO 최초 생성
*
*
* @author 이씨플라자 * DIGITALSHIP JSYOO
* @since 2021. 7. 12.
* @version 1.0
*
*/
%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script>
function snsCertForm(){
if(document.getElementById('agree').checked)
{
location.href="/nlib/member/snsCertForm.do";
}
else{
alert("약관에 동의해주세요");
}
}
</script>
</head>
<body>
<div style="width:500px;">
<textarea style="height:200px;width:500px;">${result.info["terms"]}</textarea>
<br><div style="float: right;"><input type="checkbox" id="agree" >동의</div>
<br><br><input type="button" value="다음" onclick="snsCertForm();" style="float: right;">
</div>
</body>
</html>