사용자: 회원스킨 가입약관동의 스타일

This commit is contained in:
whitedot
2013-01-29 14:16:05 +09:00
parent 076b82b218
commit 41b62750b4
4 changed files with 50 additions and 17 deletions

View File

@ -2,10 +2,11 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<div id="password_confirm">
<p>
<div id="pw_confirm">
<h1><?=$g4['title']?></h1>
<p class="cbg">
<strong>비밀글 기능으로 보호된 글입니다.</strong>
작성자와 관리자만 열람하실 수 있습니다. 작성자 본인이라면 패스워드를 입력하세요.
작성자와 관리자만 열람하실 수 있습니다. 본인이라면 패스워드를 입력하세요.
</p>
<form name="fboardpassword" method="post" action="<? echo $action; ?>">
@ -17,13 +18,17 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<input type="hidden" name="stx" value="<?=$stx?>">
<input type="hidden" name="page" value="<?=$page?>">
<fieldset>
<fieldset class="cbg">
<label for="password_wr_password">패스워드<strong class="sound_only">필수</strong></label>
<input type="password" id="password_wr_password" name="wr_password" class="fieldset_input required" maxLength="20" size="15" required title="패스워드">
<input type="submit" class="fieldset_submit" value="확인">
<input type="password" id="password_wr_password" name="wr_password" class="fs_input required" maxLength="20" size="15" required title="패스워드">
<input type="submit" class="fs_submit" value="확인">
</fieldset>
</form>
<div class="btn_confirm">
<a href="<?=$_SERVER['HTTP_REFERER']?>">돌아가기</a>
</div>
</div>
<script>

View File

@ -4,25 +4,26 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<form id="fregister" name="fregister" method="POST" action="<?=$register_action_url?>" onsubmit="return fregister_submit(this);" autocomplete="off">
<section id="fregister_term">
<section id="fregister_term" class="cbg">
<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">
<label for="agree11">회원가입약관의 내용에 동의합니다. (동의하셔야 회원가입가능)</label>
</fieldset>
</section>
<section id="fregister_private">
<section id="fregister_private" class="cbg">
<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">
<label for="agree21">개인정보수집이용안내의 내용에 동의합니다. (동의하셔야 회원가입가능)</label>
</fieldset>
</section>
<div class="btn_confirm">
<p>회원가입약관 및 개인정보수집이용안내의 내용에 동의하셔야 회원가입 하실 수 있습니다.</p>
<input type="submit" class="btn_submit" value="회원가입">
</div>