This commit is contained in:
2025-02-11 16:22:18 +07:00
parent 961e92b965
commit c3c4efd679
30 changed files with 637 additions and 759 deletions

View File

@@ -1,9 +1,10 @@
<form method="post" enctype="multipart/form-data" class="order-page-table w-[852px] bg-white p-[16px] rounded-[15px] shadow-[0px_1px_1px_0px_rgba(0,0,0,0.10)] leading-[20px] block">
<form method="post" enctype="multipart/form-data"
class="order-page-table w-[852px] 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"/>
<input type="text" value="" class="page-input" />
</td>
</tr>
@@ -11,41 +12,46 @@
<td> File ảnh </td>
<td>
<div class="mb-[15px]">
<img src="https://via.placeholder.com/900x900" class="block max-h-[300px]"/>
<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">
<label class="items-center cursor-pointer relative pl-[30px] mr-[15px]" style="display: inline-flex;">
<input type="radio" name="popup_display" value="session" class="left-0">
<span>Theo session</span>
</label>
<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="items-center cursor-pointer relative pl-[30px]" style="display: inline-flex;">
<input type="radio" name="popup_display" value="homepage" checked class="left-0">
<span>Trang chủ website</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="items-center cursor-pointer" style="display: inline-flex;">
<input type="checkbox" name="popup_activate" value="1" class="scale-[1.5] mr-[12px]">
<span> Tích chọn để hiển thị hoặc dừng hiển thị </span>
<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]"/>
<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>