56 lines
2.0 KiB
PHP
56 lines
2.0 KiB
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|
?>
|
|
|
|
<!-- 회원가입약관 동의 시작 { -->
|
|
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
|
|
|
|
<div class="mbskin">
|
|
<form name="fregister" id="fregister" action="<?php echo $register_action_url ?>" onsubmit="return fregister_submit(this);" method="POST" autocomplete="off">
|
|
|
|
<p>회원가입약관 및 개인정보처리방침안내의 내용에 동의하셔야 회원가입 하실 수 있습니다.</p>
|
|
|
|
<section id="fregister_term">
|
|
<h2>회원가입약관</h2>
|
|
<textarea readonly><?php echo get_text($config['cf_stipulation']) ?></textarea>
|
|
<fieldset class="fregister_agree">
|
|
<label for="agree11">회원가입약관의 내용에 동의합니다.</label>
|
|
<input type="checkbox" name="agree" value="1" id="agree11">
|
|
</fieldset>
|
|
</section>
|
|
|
|
<section id="fregister_private">
|
|
<h2>개인정보처리방침안내</h2>
|
|
<textarea readonly><?php echo get_text($config['cf_privacy']) ?></textarea>
|
|
<fieldset class="fregister_agree">
|
|
<label for="agree21">개인정보처리방침안내의 내용에 동의합니다.</label>
|
|
<input type="checkbox" name="agree2" value="1" id="agree21">
|
|
</fieldset>
|
|
</section>
|
|
|
|
<div class="btn_confirm">
|
|
<input type="submit" class="btn_submit" value="회원가입">
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<script>
|
|
function fregister_submit(f)
|
|
{
|
|
if (!f.agree.checked) {
|
|
alert("회원가입약관의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
|
f.agree.focus();
|
|
return false;
|
|
}
|
|
|
|
if (!f.agree2.checked) {
|
|
alert("개인정보처리방침안내의 내용에 동의하셔야 회원가입 하실 수 있습니다.");
|
|
f.agree2.focus();
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
</script>
|
|
</div>
|
|
<!-- } 회원가입 약관 동의 끝 -->
|