2026-03-25 16:20:56 +09:00
|
|
|
<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>
|
|
|
|
|
<div class="border border-gray-300 p-4 mt-2 bg-white max-w-3xl">
|
|
|
|
|
<form action="<?= base_url('admin/code-kinds/store') ?>" method="POST" class="space-y-4">
|
|
|
|
|
<?= csrf_field() ?>
|
|
|
|
|
|
|
|
|
|
<div class="flex flex-wrap items-center gap-2">
|
|
|
|
|
<label class="block text-sm font-bold text-gray-700 w-28">코드 <span class="text-red-500">*</span></label>
|
|
|
|
|
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-24 font-mono" name="ck_code" type="text" value="<?= esc(old('ck_code')) ?>" maxlength="20" required placeholder="예: Z"/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex flex-wrap items-center gap-2">
|
|
|
|
|
<label class="block text-sm font-bold text-gray-700 w-28">코드명 <span class="text-red-500">*</span></label>
|
|
|
|
|
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-72" name="ck_name" type="text" value="<?= esc(old('ck_name')) ?>" maxlength="100" required placeholder="코드 종류 이름"/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex gap-2 pt-2">
|
|
|
|
|
<button type="submit" class="bg-btn-search text-white px-6 py-1.5 rounded-sm text-sm shadow hover:opacity-90 transition">등록</button>
|
2026-03-30 15:07:09 +09:00
|
|
|
<a href="<?= base_url('bag/code-kinds') ?>" class="bg-gray-200 text-gray-700 px-6 py-1.5 rounded-sm text-sm hover:bg-gray-300 transition">취소</a>
|
2026-03-25 16:20:56 +09:00
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|