Files
agent_test/template/system/form_store_design/popup.html

57 lines
2.2 KiB
HTML
Raw Normal View History

2026-03-07 10:26:20 +07:00
<form method="post" enctype="multipart/form-data"
class="order-page-table w-[calc(100%_-25%_-16px)] bg-white p-[16px] rounded-[15px] shadow-[0px_1px_1px_0px_rgba(0,0,0,0.10)] leading-[20px] block">
<table>
<tr>
<td width="230"> Link nhảy đến </td>
<td>
<input type="text" value="" class="page-input" />
</td>
</tr>
<tr>
<td> File ảnh </td>
<td>
<div class="mb-[15px]">
<img src="https://via.placeholder.com/900x900" class="block max-h-[300px]" />
</div>
<input type="file" class="cursor-pointer" />
</td>
</tr>
<tr>
<td> Lựa chọn hiển thị người dùng </td>
<td style="padding: 14px">
<div class="flex items-center">
<label class="cursor-pointer flex items-center mr-[15px]">
<input type="radio" name="popup_display" value="session" class="radio checked:bg-blue-500"
checked="checked" />
<span class="label-text ml-[10px]">Theo session</span>
</label>
<label class="cursor-pointer flex items-center">
<input type="radio" name="popup_display" value="homepage" class="radio checked:bg-blue-500"
checked="checked" />
<span class="label-text ml-[10px]">Trang chủ website</span>
</label>
</div>
</td>
</tr>
<tr>
<td> Khác </td>
<td>
<label class="cursor-pointer flex items-center">
<input type="checkbox" name="popup_activate" value="1" checked="checked"
class="checkbox checkbox-success" />
<span class="label-text ml-[5px]">Tích chọn để hiển thị hoặc dừng hiển thị</span>
</label>
</td>
</tr>
</table>
<input type="submit" value="Cập nhật"
class="inline-block mt-[12px] cursor-pointer h-[32px] bg-[#0041E8] text-[#fff] rounded-[4px] font-[500] p-[0_11px]" />
</form>