html body head 태그제거

This commit is contained in:
JSYOO 2021-11-18 16:48:37 +09:00
parent 15acbbc190
commit 00c20f786a

View File

@ -4,11 +4,6 @@
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %> <%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%> <%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
<!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> <script>
$(document).ready(function(){ $(document).ready(function(){
var cnt=${cnt}; var cnt=${cnt};
@ -82,8 +77,6 @@ function accountLink()
} }
</script> </script>
</head>
<body>
<form id="alreadySingUpForm" name="alreadySingUpForm"> <form id="alreadySingUpForm" name="alreadySingUpForm">
<!-- 계정연결 팝업 --> <!-- 계정연결 팝업 -->
<div class="pop-login-connect"> <div class="pop-login-connect">
@ -142,27 +135,3 @@ function accountLink()
<div class="Bg"></div> <div class="Bg"></div>
</div> </div>
</form> </form>
<%-- <p1>서비스에 이미 가입된 계정이 있습니다.</p1>
<table>
<c:forEach items="${result}" var="result" varStatus="status">
<tr onClick="selectAccount('<c:out value="${result.mbInfoId}"/>','<c:out value="${result.name}"/>','<c:out value="${result.email}"/>');">
<td><c:out value="${result.name}"/></td>
<td><c:out value="${result.email}"/></td>
</tr>
</c:forEach>
</table>
<a href="javascript:void(0);" onclick="fn_closeLayerPopup();">아니요, 내가 아닙니다.</a>
</form>
<form id="selectAccountForm" name="selectAccountForm" style="display:none;">
<p1>비밀번호 입력</p1>
<div id="accountInfo">
<input type="text" id="selectName" name="selectName" readonly><input type="text" id="selectEmail" name="selectEmail" readonly>
</div>
<input type="password" id="selectPassword" name="selectPassword" placeholder="비밀번호"><br>
<a href="javascript:notAlreadySingUp();" onclick="return false;">비밀번호를 잊으셨나요?</a>
<input type="button" onclick="goPrevious();" value="이전으로"><input type="button" onclick="accountLink();" value="계정 연결하기">
<input type="hidden" id="mbInfoId" name="mbInfoId"> --%>
</form>
</body>
</html>