<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<!DOCTYPE html>
<html lang="ko">
	<head>
		<script type="text/javascript" src="/js/jquery.min.kcc.js"></script>
		<script type="text/javascript">
			$(document).ready(function(){
				actionLogin();			
			});
			function actionLogin() {
				document.loginForm.submit();
			}
		</script>
	</head>
	<body>
		<form id="loginForm" name="loginForm" method="post" action="<c:url value='/kcc/web/user/login/actionSecurityLogin.do'/>">
	  	<input type="hidden" id="snsId" name="snsId" value="${loginVO.snsId}"/>
	  	<input type="hidden" id="name" name="name" value="${loginVO.name}"/>
	  	<input type="hidden" id="snsEmail" name="snsEmail" value="${loginVO.snsEmail}"/>
	  	<input type="hidden" id="snsSite" name="snsSite" value="${loginVO.snsSite}"/>
	    <input type="hidden" id="password" name="password">
		</form>
	</body>
</html>
	