38 lines
1.7 KiB
PHP
38 lines
1.7 KiB
PHP
<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>
|