스킨 파일 정리

This commit is contained in:
chicpro
2013-07-03 11:33:49 +09:00
parent f32cdeb2c1
commit 5a7e4c3a5b
39 changed files with 80 additions and 1222 deletions

View File

@ -2,10 +2,10 @@
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?>
<link rel="stylesheet" href="<?php echo $member_skin_url ?>/style.css">
<link rel="stylesheet" href="<?php echo $member_skin_url; ?>/style.css">
<div id="mb_confirm">
<h1><?php echo $g4['title'] ?></h1>
<h1><?php echo $g4['title']; ?></h1>
<p>
<strong>패스워드를 한번 더 입력해주세요.</strong>
@ -16,13 +16,13 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<?php } ?>
</p>
<form name="fmemberconfirm" action="<?php echo $url ?>" onsubmit="return fmemberconfirm_submit(this);" method="post">
<input type="hidden" name="mb_id" value="<?php echo $member['mb_id'] ?>">
<form name="fmemberconfirm" action="<?php echo $url; ?>" onsubmit="return fmemberconfirm_submit(this);" method="post">
<input type="hidden" name="mb_id" value="<?php echo $member['mb_id']; ?>">
<input type="hidden" name="w" value="u">
<fieldset>
회원아이디
<span id="mb_confirm_id"><?php echo $member['mb_id'] ?></span>
<span id="mb_confirm_id"><?php echo $member['mb_id']; ?></span>
<label for="confirm_mb_password">패스워드<strong class="sound_only">필수</strong></label>
<input type="password" name="mb_password" id="confirm_mb_password" required class="required frm_input" size="15" maxLength="20">
@ -32,7 +32,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
</form>
<div class="btn_confirm">
<a href="<?php echo G4_URL ?>">메인으로 돌아가기</a>
<a href="<?php echo G4_URL; ?>">메인으로 돌아가기</a>
</div>
</div>