사용자: 로그인스킨 작업 중, 우편번호 검색의 legend 삭제

This commit is contained in:
whitedot
2013-01-17 16:32:04 +09:00
parent 1a84965437
commit 9593612ab4
6 changed files with 38 additions and 24 deletions

4
bbs/_head.sub.php Normal file
View File

@ -0,0 +1,4 @@
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once($g4['path'].'/head.sub.php');
?>

4
bbs/_tail.sub.php Normal file
View File

@ -0,0 +1,4 @@
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once($g4['path'].'/tail.sub.php');
?>

View File

@ -2,7 +2,7 @@
include_once('./_common.php'); include_once('./_common.php');
$g4['title'] = '로그인'; $g4['title'] = '로그인';
include_once('./_head.php'); include_once('./_head.sub.php');
$p = parse_url($url); $p = parse_url($url);
if ((isset($p['scheme']) && $p['scheme']) || if ((isset($p['scheme']) && $p['scheme']) ||
@ -52,5 +52,5 @@ $member_skin_path = $g4['path'].'/skin/member/'.$config['cf_member_skin'];
include_once($member_skin_path.'/login.skin.php'); include_once($member_skin_path.'/login.skin.php');
include_once('./_tail.php'); include_once('./_tail.sub.php');
?> ?>

View File

@ -407,6 +407,8 @@ a {color:#000;text-decoration:none}
#post_num li a {display:block;padding:5px 0} #post_num li a {display:block;padding:5px 0}
#post_num p {margin:0 auto 30px;width:90%} #post_num p {margin:0 auto 30px;width:90%}
/* 로그인 */
/* 회원가입 약관 */ /* 회원가입 약관 */
#fregister section {margin-bottom:20px} #fregister section {margin-bottom:20px}
#fregister textarea {display:block;margin-bottom:10px;padding:5px;width:98%;height:150px;border:1px solid #ddd;background:#f7f7f7} #fregister textarea {display:block;margin-bottom:10px;padding:5px;width:98%;height:150px;border:1px solid #ddd;background:#f7f7f7}

View File

@ -2,6 +2,9 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?> ?>
<div id="member_login">
<h1>로그인</h1>
<form name="flogin" method="post" action="<?=$login_action_url?>" onsubmit="return flogin_submit(this);"> <form name="flogin" method="post" action="<?=$login_action_url?>" onsubmit="return flogin_submit(this);">
<input type="hidden" name="url" value='<?=$login_url?>'> <input type="hidden" name="url" value='<?=$login_url?>'>
@ -27,6 +30,8 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
</form> </form>
</div>
<script> <script>
$(function(){ $(function(){
$("#login_auto_login").click(function(){ $("#login_auto_login").click(function(){

View File

@ -13,7 +13,6 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<input type="hidden" name="frm_addr2" value="<?=$frm_addr2?>"> <input type="hidden" name="frm_addr2" value="<?=$frm_addr2?>">
<fieldset> <fieldset>
<legend>우편번호 검색</legend>
<label for="addr1">동/읍/면/리 검색</label> <label for="addr1">동/읍/면/리 검색</label>
<input type="text" id="addr1" name="addr1" class="fieldset_input" value="<?=$addr1?>" required minlength=2> <input type="text" id="addr1" name="addr1" class="fieldset_input" value="<?=$addr1?>" required minlength=2>
<input type="submit" class="fieldset_submit" value="검색"> <input type="submit" class="fieldset_submit" value="검색">