File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>회원가입 본인인증 관리</title>
<script type="text/javascript">
function doUpdate() {
var form = document.form;
form.action = "/sym/site/updateJoinCertType.do";
if (!confirm('수정하시겠습니까?'))
return;
form.submit();
}
</script>
</head>
<body>
<div class="contWrap">
<div class="pageTitle">
<div class="pageIcon"><img src="/pb/img/pageTitIcon4.png" alt=""></div>
<h2 class="titType1 c_222222 fwBold">회원가입 본인인증 관리</h2>
<p class="tType6 c_999999">회원가입 본인인증 관리 페이지 입니다.</p>
</div>
<div class="pageCont">
<form name="form" id="form" method="post">
<div class="tableWrap">
<table class="tbType2">
<colgroup>
<col width="30%">
<col width="*">
</colgroup>
<tbody>
<tr>
<th>본인 인증 방식</th>
<td>
<select name="joinCertType" id="joinCertType">
<option value="M" <c:if test="${joinSettingVO.joinCertType == 'M'}">selected</c:if> >문자 인증</option>
<option value="P" <c:if test="${joinSettingVO.joinCertType == 'P'}">selected</c:if> >ARS 전화 인증</option>
<option value="A" <c:if test="${joinSettingVO.joinCertType == 'A'}">selected</c:if> >문자 + ARS 인증</option>
</select>
</td>
</tr>
</tbody>
</table>
</div>
</form>
<div class="btnWrap">
<input type="button" class="btnType1" value="수정" onclick="javascript:doUpdate(); return false;">
</div>
</div>
</div>
</body>
</html>