Files
admin_hura_8/template/system/ship_method_add.html
2025-04-11 14:18:51 +07:00

104 lines
6.3 KiB
HTML

<div class="w-[100%] mb-[100px]">
<div class="global-breadcrumb-container">
<a href="/admin/system"> Cài đặt chung </a>
<a href="">Form thêm/sửa phương thức vận chuyển </a>
</div>
<div class="w-[1140px] my-0 mx-auto">
<div class="flex items-center justify-end my-[25px]">
<a href="/admin/ship-method-add"
class="inline-flex items-center whitespace-nowrap border border-[#0041E8] rounded-[4px] bg-[#F5F7FF] text-[#0041E8] p-[0_12px] font-[500] leading-[35px] group hover:bg-[#0041E8] hover:text-[#fff]">
<span
class="border-[1px] border-[#0041E8] h-[13px] w-[13px] leading-[10.2px] text-center rounded-[50%] mr-1 group-hover:border-[#fff]">+</span>
<span>Thêm vận chuyển mới</span>
</a>
<a href="/admin/ship-method"
class="inline-flex ml-[10px] items-center whitespace-nowrap border border-[#0041E8] rounded-[4px] bg-[#0041E8] text-white p-[0_12px] font-[500] leading-[35px] group hover:bg-[#0041E8] hover:text-[#fff]">
<span>Danh sách vận chuyển</span>
</a>
</div>
<div class="flex">
<div>
<div
class="w-[270px] m-[0_16px_0_0] bg-white rounded-[10px] shadow-[0px_1px_1px_0px_rgba(0,0,0,0.10)] font-[500] leading-[24px] overflow-hidden">
<a href="javascript:void(0)" style="color: #Fff;background: #0041E8;"
class="block p-[6px_16px] text-[#919699] hover:text-[#fff] hover:bg-[#0041E8] transition">
Thông tin
</a>
</div>
</div>
<div class="w-[852px]">
<div class="p-[15px] bg-white rounded-[15px_15px_0_0] shadow-[0px_1px_1px_0px_#0000001A]">
<b class="block mb-[10px]">Phân loại (*)</b>
<div class="mb-[15px]">
<label class="cursor-pointer flex items-center mb-[10px]">
<input type="radio" name="info[type]" value="pick_up_at_store"
class="radio checked:bg-blue-500" checked="checked">
<span class="label-text ml-[10px]">Nhận hàng tại cửa hàng</span>
</label>
<label class="cursor-pointer flex items-center mb-[10px]">
<input type="radio" name="info[type]" value="store_delivery"
class="radio checked:bg-blue-500">
<span class="label-text ml-[10px]">Giao hàng bởi cửa hàng</span>
</label>
<label class="cursor-pointer flex items-center mb-[10px]">
<input type="radio" name="info[type]" value="shipping_provider"
class="radio checked:bg-blue-500">
<span class="label-text ml-[10px]">Giao bởi bên vận chuyển</span>
</label>
<label class="cursor-pointer flex items-center mb-[10px]">
<input type="radio" name="info[type]" value="other" class="radio checked:bg-blue-500">
<span class="label-text ml-[10px]">Hình thức khác</span>
</label>
</div>
<div class="mb-[15px]">
<label for="" class="block mb-[10px] font-[700] text-[14px] text-[#383C44]">Tên phương thức vận
chuyển</label>
<input type="text" name="" value="" placeholder="Tên phương thức vận chuyển"
class="w-full input input-md input-bordered h-[35px] rounded-[4px] shadow-[0_2px_4px_0_rgba(0,0,0,0.12)] mr-[10px]">
</div>
<div class="mb-[15px]">
<label for="" class="block mb-[10px] font-[700] text-[14px] text-[#383C44]">Nội dung chi
tiết</label>
<textarea type="text" name="" value="" placeholder="Tên phương thức vận chuyển"
class="w-full textarea input-bordered h-[100px] rounded-[4px] shadow-[0_2px_4px_0_rgba(0,0,0,0.12)] mr-[10px]"></textarea>
</div>
<div class="mb-[15px]">
<label for="" class="block mb-[10px] font-[700] text-[14px] text-[#383C44]">Thứ tự xuất hiện
<span class="text-[14px] font-[400] text-gray-500">(cao xếp trước)</span></label>
<input type="text" name="" value="" placeholder="Tên phương thức vận chuyển"
class="w-[30%] input input-md input-bordered h-[35px] rounded-[4px] shadow-[0_2px_4px_0_rgba(0,0,0,0.12)] mr-[10px]">
</div>
<div class="flex items-center">
<label for="" class="block mb-[10px] font-[700] text-[14px] text-[#383C44] mr-[20px]">Hiển
thị</label>
<label class="cursor-pointer flex items-center mb-[10px] mr-[20px]">
<input type="radio" name="info[status]" value="1" class="radio checked:bg-blue-500"
checked="checked">
<span class="label-text ml-[10px]">Hiển thị</span>
</label>
<label class="cursor-pointer flex items-center mb-[10px]">
<input type="radio" name="info[status]" value="0" class="radio checked:bg-blue-500">
<span class="label-text ml-[10px]">Ẩn hiển thị</span>
</label>
</div>
</div>
<div
class="p-[10px_15px] bg-white rounded-[0_0_15px_15px] shadow-[0px_1px_1px_0px_#0000001A] mt-[10px] border-t-[6px] border-[#F6F6F6]">
<input
class="btn w-[95px] h-[35px] min-h-[35px] bg-[#0041E8] rounded-[4px] mt-[10px] text-white cursor-pointer"
name="submit" type="submit" value="Cập nhật">
</div>
</div>
</div>
</div>
</div>