관리자: 관리권한 추가 스타일

This commit is contained in:
whitedot
2013-02-18 17:38:27 +09:00
parent 0c6e9e828f
commit f19d200fe5
2 changed files with 45 additions and 33 deletions

View File

@ -104,7 +104,7 @@ function point_clear()
<section class="cbox">
<h2>포인트 내역</h2>
<form id="fpointlist" name="fpointlist" method="post" action="./point_list_delete.php" onsubmit="return fpointlist_submit(this);">
<form id="fpointlist" name="fpointlist" method="post">
<input type="hidden" name="sst" value="<?=$sst?>">
<input type="hidden" name="sod" value="<?=$sod?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
@ -167,7 +167,7 @@ function point_clear()
</table>
<div class="btn_list">
<button>선택삭제</button>
<button onclick="btn_check(this.form, 'delete')">선택삭제</button>
</div>
</form>
@ -190,6 +190,7 @@ function point_clear()
<colgroup>
<col class="grid_3">
<col>
</colgroup>
<tbody>
<tr>
<th scope="row"><label for="mb_id">회원아이디<strong class="sound_only">필수</strong></label></th>
@ -203,6 +204,7 @@ function point_clear()
<th scope="row"><label for="po_point">포인트<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="po_point" name="po_point" class="required frm_input" required></td>
</tr>
</tbody>
</table>
<fieldset id="admin_confirm">
@ -220,18 +222,6 @@ function point_clear()
</fieldset>
<script>
function fpointlist_submit(f)
{
if (!is_checked("chk[]")) {
alert("선택삭제 하실 항목을 하나 이상 선택하세요.");
return false;
}
return true;
}
</script>
<?
include_once ('./admin.tail.php');
?>