사용자: 회원가입약관
This commit is contained in:
@ -230,6 +230,13 @@ h6 {margin:0 0 20px}
|
||||
#post_num li a {display:block;padding:5px 0;font-size:0.8em}
|
||||
#post_num p {margin:0 auto 30px;width:90%}
|
||||
|
||||
/* 회원가입 약관 */
|
||||
#fregister {padding:20px;background:#f5f5f2}
|
||||
#fregister_term {float:left;width:49%}
|
||||
#fregister_private {float:right;width:49%}
|
||||
#fregister textarea {display:block;margin-bottom:10px;width:95%;height:200px;border:1px solid #ddd}
|
||||
#fregister label {display:inline-block;margin-right:10px}
|
||||
|
||||
/* pagination */
|
||||
.pg {margin-bottom:30px;font-size:0.875em;text-align:center}
|
||||
.pg_page, .pg_current {display:inline-block;position:relative;margin-left:-6px;padding:0 10px;height:25px;border:1px solid #ddd;background:#fff;line-height:1.9em;vertical-align:middle}
|
||||
|
||||
@ -2,21 +2,22 @@
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
?>
|
||||
|
||||
<form name="fregister" method="POST" onsubmit="return fregister_submit(this);" autocomplete="off">
|
||||
<form id="fregister" name="fregister" method="POST" onsubmit="return fregister_submit(this);" autocomplete="off">
|
||||
|
||||
<section>
|
||||
<section id="fregister_term">
|
||||
<h2>회원가입약관</h2>
|
||||
<textarea readonly><?=get_text($config['cf_stipulation'])?></textarea>
|
||||
<input type="radio" id="agree11" name="agree" value="1"><label for="agree11">동의합니다.</label>
|
||||
<input type="radio" id="agree10" name="agree" value="0"><label for="agree10">동의하지 않습니다.</label>
|
||||
</section>
|
||||
|
||||
|
||||
<section>
|
||||
<section id="fregister_private">
|
||||
<h2>개인정보취급방침</h2>
|
||||
<textarea readonly><?=get_text($config['cf_privacy'])?></textarea>
|
||||
<input type="radio" id="agree21" name="agree2" value="1"><label for="agree21">동의합니다.</label>
|
||||
<input type="radio" id="agree20" name="agree2" value="0"><label for="agree20">동의하지 않습니다.</label>
|
||||
<input type="radio" id="agree21" name="agree2" value="1">
|
||||
<label for="agree21">동의합니다.</label>
|
||||
<input type="radio" id="agree20" name="agree2" value="0">
|
||||
<label for="agree20">동의하지 않습니다.</label>
|
||||
</section>
|
||||
|
||||
<div class="btn_confirm">
|
||||
@ -25,8 +26,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
<script>
|
||||
function fregister_submit(f)
|
||||
{
|
||||
var agree1 = document.getElementsByName("agree");
|
||||
|
||||
Reference in New Issue
Block a user