103 lines
3.9 KiB
PHP
103 lines
3.9 KiB
PHP
<?
|
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|
?>
|
|
|
|
<form name="fregister" method="POST" onsubmit="return fregister_submit(this);" autocomplete="off">
|
|
|
|
<table width=600 cellspacing=0 cellspacing=0 align=center><tr><td align=center>
|
|
|
|
<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>
|
|
|
|
<? 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>
|
|
|
|
</form>
|
|
|
|
|
|
<script type="text/javascript">
|
|
function fregister_submit(f)
|
|
{
|
|
var agree1 = document.getElementsByName("agree");
|
|
if (!agree1[0].checked) {
|
|
alert("회원가입약관의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
|
agree1[0].focus();
|
|
return false;
|
|
}
|
|
|
|
var agree2 = document.getElementsByName("agree2");
|
|
if (!agree2[0].checked) {
|
|
alert("개인정보취급방침의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
|
agree2[0].focus();
|
|
return false;
|
|
}
|
|
|
|
f.action = "./register_form.php";
|
|
return true;
|
|
}
|
|
|
|
if (typeof(document.fregister.mb_name) != "undefined")
|
|
document.fregister.mb_name.focus();
|
|
</script>
|