사용자: neo -> basic
This commit is contained in:
@ -2,101 +2,48 @@
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
?>
|
||||
|
||||
<form name="fregister" method="POST" onsubmit="return fregister_submit(this);" autocomplete="off">
|
||||
<form id="fregister" name="fregister" method="POST" action="<?=$register_action_url?>" onsubmit="return fregister_submit(this);" autocomplete="off">
|
||||
|
||||
<table width=600 cellspacing=0 cellspacing=0 align=center><tr><td align=center>
|
||||
<section id="fregister_term">
|
||||
<h2>회원가입약관</h2>
|
||||
<textarea readonly><?=get_text($config['cf_stipulation'])?></textarea>
|
||||
<fieldset class="fregister_agree">
|
||||
<label for="agree11">회원가입약관의 내용에 동의합니다.</label>
|
||||
<input type="checkbox" id="agree11" name="agree" value="1">
|
||||
</fieldset>
|
||||
</section>
|
||||
|
||||
<table width="100%" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td align=center><img src="<?=$member_skin_path?>/img/join_title.gif" width="624" height="72"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<section id="fregister_private">
|
||||
<h2>개인정보수집이용안내</h2>
|
||||
<textarea readonly><?=get_text($config['cf_privacy'])?></textarea>
|
||||
<fieldset class="fregister_agree">
|
||||
<label for="agree21">개인정보수집이용안내의 내용에 동의합니다.</label>
|
||||
<input type="checkbox" id="agree21" name="agree2" value="1">
|
||||
</fieldset>
|
||||
</section>
|
||||
|
||||
<? if ($config[cf_use_jumin]) { // 주민등록번호를 사용한다면 ?>
|
||||
<!-- 2012년 8월 부터 주민등록번호 수집과 이용이 제한됨 (사실상 수집 금지)
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td height=25></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#cccccc">
|
||||
<table cellspacing=1 cellpadding=0 width=100% border=0>
|
||||
<tr bgcolor="#ffffff">
|
||||
<td width="140" height=30> <b>이름</b></td>
|
||||
<td width=""> <input name=mb_name itemname="이름" required minlength="2" nospace hangul class=ed></td>
|
||||
</tr>
|
||||
<tr bgcolor="#ffffff">
|
||||
<td height=30> <b>주민등록번호</b></td>
|
||||
<td> <input name=mb_jumin itemname="주민등록번호" required jumin minlength="13" maxlength=13 class=ed><font style="font-family:돋움; font-size:9pt; color:#66a2c8"> ※ 숫자 13자리 중간에 - 없이 입력하세요.</font></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table> -->
|
||||
<? } ?>
|
||||
|
||||
<br>
|
||||
<table width="100%" cellpadding="4" cellspacing="0" bgcolor=#EEEEEE>
|
||||
<tr>
|
||||
<td height=40> <b>회원가입약관</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><textarea style="width: 98%" rows=10 readonly class=ed><?=get_text($config[cf_stipulation])?></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height=40>
|
||||
<input type=radio value=1 name=agree id=agree11> <label for=agree11>동의합니다.</label>
|
||||
<input type=radio value=0 name=agree id=agree10> <label for=agree10>동의하지 않습니다.</label>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<table width="100%" cellpadding="4" cellspacing="0" bgcolor=#EEEEEE>
|
||||
<tr>
|
||||
<td height=40> <b>개인정보취급방침</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top"><textarea style="width: 98%" rows=10 readonly class=ed><?=get_text($config[cf_privacy])?></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height=40>
|
||||
<input type=radio value=1 name=agree2 id=agree21> <label for=agree21>동의합니다.</label>
|
||||
<input type=radio value=0 name=agree2 id=agree20> <label for=agree20>동의하지 않습니다.</label>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
<br>
|
||||
<div align=center>
|
||||
<input type=image width="66" height="20" src="<?=$member_skin_path?>/img/join_ok_btn.gif" border=0>
|
||||
<div class="btn_confirm">
|
||||
<p>회원가입약관 및 개인정보수집이용안내의 내용에 동의하셔야 회원가입 하실 수 있습니다.</p>
|
||||
<input type="submit" class="btn_submit" value="회원가입">
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
<script>
|
||||
function fregister_submit(f)
|
||||
{
|
||||
var agree1 = document.getElementsByName("agree");
|
||||
if (!agree1[0].checked) {
|
||||
if (!f.agree.checked) {
|
||||
alert("회원가입약관의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
||||
agree1[0].focus();
|
||||
f.agree.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
var agree2 = document.getElementsByName("agree2");
|
||||
if (!agree2[0].checked) {
|
||||
alert("개인정보취급방침의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
||||
agree2[0].focus();
|
||||
if (!f.agree2.checked) {
|
||||
alert("개인정보수집이용안내의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
||||
f.agree2.focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
f.action = "./register_form.php";
|
||||
return true;
|
||||
}
|
||||
|
||||
if (typeof(document.fregister.mb_name) != "undefined")
|
||||
document.fregister.mb_name.focus();
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user