feat: 기본코드 bag 목록과 관리자 CRUD 분리
- /bag/code-kinds, /bag/code-details/{ck_idx} 조회 (LoginAuthFilter, Roles::canManageCodeMaster)
- admin에서는 종류·세부 목록 제거, 등록·수정·삭제만 유지 후 bag으로 리다이렉트
- 사이트 메뉴·기본코드 링크 SQL, CSV 동기화 스크립트·README 보강
- 관리자 대시보드: 발주·판매 테이블 미존재 시 통계 비활성화
- 회원 로그인 잠금(mb_login_fail_count, mb_locked_until) 및 관리자 잠금 해제
Made-with: Cursor
This commit is contained in:
@@ -1,6 +1,19 @@
|
||||
<section class="border-b border-gray-300 p-2 shrink-0 bg-control-panel">
|
||||
<span class="text-sm font-bold text-gray-700">회원 수정</span>
|
||||
</section>
|
||||
<?php
|
||||
$editLockUntil = $member->mb_locked_until ?? null;
|
||||
$editLoginLocked = $editLockUntil !== null && $editLockUntil !== '' && strtotime((string) $editLockUntil) > time();
|
||||
?>
|
||||
<?php if ($editLoginLocked): ?>
|
||||
<div class="mt-2 p-3 bg-amber-50 border border-amber-200 text-sm text-amber-900 flex flex-wrap items-center gap-3">
|
||||
<span>비밀번호 오류로 로그인이 잠겨 있습니다. (~ <?= esc(date('Y-m-d H:i', strtotime((string) $editLockUntil))) ?>)</span>
|
||||
<form action="<?= base_url('admin/users/unlock-login/' . $member->mb_idx) ?>" method="POST" class="inline" onsubmit="return confirm('로그인 잠금을 해제할까요?');">
|
||||
<?= csrf_field() ?>
|
||||
<button type="submit" class="bg-amber-700 text-white px-3 py-1 rounded-sm text-sm hover:opacity-90">잠금 해제</button>
|
||||
</form>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="border border-gray-300 p-4 mt-2 bg-white max-w-xl">
|
||||
<form action="<?= base_url('admin/users/update/' . $member->mb_idx) ?>" method="POST" class="space-y-4">
|
||||
<?= csrf_field() ?>
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
<th>이메일</th>
|
||||
<th>역할</th>
|
||||
<th>상태</th>
|
||||
<th>로그인 잠금</th>
|
||||
<th>가입일</th>
|
||||
<th>관리</th>
|
||||
</tr>
|
||||
@@ -42,9 +43,27 @@
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
<td class="text-left pl-2 text-sm">
|
||||
<?php
|
||||
$until = $row->mb_locked_until ?? null;
|
||||
$loginLocked = $until !== null && $until !== '' && strtotime((string) $until) > time();
|
||||
if ($loginLocked) {
|
||||
echo '잠금~' . esc(date('Y-m-d H:i', strtotime((string) $until)));
|
||||
} else {
|
||||
$fail = (int) ($row->mb_login_fail_count ?? 0);
|
||||
echo $fail > 0 ? '실패 ' . $fail . '회' : '—';
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
<td class="text-left pl-2"><?= esc($row->mb_regdate ?? '') ?></td>
|
||||
<td class="text-center">
|
||||
<?php if ((int) $row->mb_state !== 0): ?>
|
||||
<?php if ($loginLocked): ?>
|
||||
<form action="<?= base_url('admin/users/unlock-login/' . $row->mb_idx) ?>" method="POST" class="inline mr-1" onsubmit="return confirm('로그인 잠금을 해제할까요?');">
|
||||
<?= csrf_field() ?>
|
||||
<button type="submit" class="text-amber-700 hover:underline">잠금해제</button>
|
||||
</form>
|
||||
<?php endif; ?>
|
||||
<a href="<?= base_url('admin/users/edit/' . $row->mb_idx) ?>" class="text-blue-600 hover:underline">수정</a>
|
||||
<form action="<?= base_url('admin/users/delete/' . $row->mb_idx) ?>" method="POST" class="inline ml-1" onsubmit="return confirm('탈퇴 처리하시겠습니까?');">
|
||||
<?= csrf_field() ?>
|
||||
|
||||
Reference in New Issue
Block a user