Files
admin_hura_8/template/customer/customer_contact.html

73 lines
3.5 KiB
HTML
Raw Permalink Normal View History

2025-12-04 13:47:17 +07:00
<div class="w-full">
<div class="p-3 rounded-sm bg-white shadow">
<h1 class="text-2xl font-bold">Khách hàng liên hệ</h1>
2024-03-05 14:55:28 +07:00
2025-12-04 13:47:17 +07:00
<form action="" class="flex items-center p-3 rounded-sm shadow mt-3 gap-3">
<input type="text" name="" class="input input-bordered input-md rounded-sm shadow" placeholder="Tìm kiếm">
<button type="submit" class="btn btn-active">Tìm kiếm</button>
2025-02-19 14:55:19 +07:00
</form>
2024-03-05 14:55:28 +07:00
2025-12-04 13:47:17 +07:00
<div class="list-filter flex items-center justify-between mt-3">
<p>Tổng hợp các liên hệ của khách hàng từ form liên hệ trên trang <a href="" class="text-primary">liên
2025-02-19 14:55:19 +07:00
hệ</a> của website</p>
2025-12-10 19:20:39 +07:00
<select name="" id="" class="select select-bordered rounded-sm shadow w-[150px]">
2025-02-19 14:55:19 +07:00
<option value="">Chọn bộ lọc</option>
</select>
</div>
2024-03-05 14:55:28 +07:00
2025-12-04 13:47:17 +07:00
<div class="overflow-x-auto mt-5 border-base-200 shadow rounded-sm">
2025-02-19 14:55:19 +07:00
<table class="table">
2025-12-04 13:47:17 +07:00
<thead>
<tr class="bg-base-200 text-black font-bold">
<th>STT</th>
2025-02-19 14:55:19 +07:00
<th>Thời gian</th>
<th>Khách hàng</th>
<th>Thông tin</th>
2025-12-04 13:47:17 +07:00
<th>Nội dung liên hệ</th>
<th>Ghi chú</th>
<th>Trạng thái</th>
2025-02-19 14:55:19 +07:00
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td class="whitespace-nowrap">09-08-2023, 11:24 am</td>
<td>Đức Anh</td>
2025-12-04 13:47:17 +07:00
<td class="whitespace-nowrap">
2025-02-19 14:55:19 +07:00
<p>- Email: ducanhnguyen199x@gmail.com</p>
<p>- Tel: 0976642092</p>
<p>- Mobile: 0976642092</p>
</td>
2025-12-04 13:47:17 +07:00
<td>
Trả góp sản phẩm: <a href="" class="link-primary">HHWS AMD RYZEN 9 3900XT | 16G | NVIDIA RTX
2060 6G</a>
<p>- Tên: no name</p>
<p>- SĐT: 0147258369</p>
<p>- Nội dung: fsfdf</p>
2025-02-19 14:55:19 +07:00
</td>
2025-12-04 13:47:17 +07:00
<td>
<textarea name="" id="" class=" rounded-sm textarea w-64"></textarea>
<a href="" class="btn btn-active mt-3">Cập
2025-02-19 14:55:19 +07:00
nhật</a>
</td>
2024-03-05 14:55:28 +07:00
2025-02-19 14:55:19 +07:00
<td class="xl:w-[120px] 2xl:w-auto">
<select name="" id=""
2025-12-04 13:47:17 +07:00
class=" select select-bordered rounded-sm shadow w-32 whitespace-nowrap">
2025-02-19 14:55:19 +07:00
<option value="">Trạng thái</option>
</select>
2025-12-04 13:47:17 +07:00
<div class="flex items-center mt-3 gap-3">
2025-12-10 19:20:39 +07:00
<a href="" class="btn btn-soft btn-xs btn-square btn-view"> <i data-lucide="pencil"
class="size-3"></i></a>
<a href="" class="btn btn-soft btn-error btn-xs btn-square" title="Xóa"> <i
data-lucide="trash-2" class="size-3"></i></a>
2025-02-19 14:55:19 +07:00
</div>
</td>
</tr>
</tbody>
</table>
</div>
2024-03-05 14:55:28 +07:00
</div>
</div>