Initial project import for team collaboration.

Exclude local docs, MCP, and secrets via gitignore.

Made-with: Cursor
This commit is contained in:
taekyoungc
2026-03-25 12:05:33 +09:00
commit 4e557d4be1
153 changed files with 16198 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<section class="border-b border-gray-300 p-2 shrink-0 bg-control-panel">
<div class="flex flex-wrap items-center justify-between gap-y-2">
<div class="flex items-center gap-4 text-sm">
<label class="font-bold text-gray-700">조회기간:</label>
<form method="GET" action="<?= base_url('admin/access/login-history') ?>" class="flex items-center gap-2">
<input type="date" name="start" class="border border-gray-300 rounded px-2 py-1 text-sm" value="<?= esc($start ?? '') ?>"/>
<span>~</span>
<input type="date" name="end" class="border border-gray-300 rounded px-2 py-1 text-sm" value="<?= esc($end ?? '') ?>"/>
<button type="submit" class="bg-btn-search text-white px-4 py-1.5 rounded-sm flex items-center gap-1 text-sm shadow hover:opacity-90 transition border border-transparent">조회</button>
</form>
</div>
</div>
</section>
<div class="border border-gray-300 overflow-auto mt-2">
<table class="w-full data-table">
<thead>
<tr>
<th>일시</th>
<th>아이디</th>
<th>성공</th>
<th>IP</th>
<th>메시지</th>
</tr>
</thead>
<tbody class="text-right">
<?php foreach ($list as $row): ?>
<tr>
<td class="text-left pl-2"><?= esc($row->mll_regdate ?? '') ?></td>
<td class="text-left pl-2"><?= esc($row->mb_id ?? '') ?></td>
<td class="text-center"><?= ! empty($row->mll_success) ? '성공' : '실패' ?></td>
<td class="text-left pl-2"><?= esc($row->mll_ip ?? '') ?></td>
<td class="text-left pl-2"><?= esc($row->mll_msg ?? '') ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>