-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.ejs
38 lines (35 loc) · 1.21 KB
/
search.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tìm kiếm nhân viên</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<h1>Tìm kiếm nhân viên</h1>
<form action="/search" method="POST">
<input type="text" name="query" placeholder="Nhập tên nhân viên" required>
<button type="submit">Tìm kiếm</button>
</form>
<% if (employees) { %>
<h2>Kết quả tìm kiếm:</h2>
<% if (employees.length > 0) { %>
<ul>
<% employees.forEach(employee => { %>
<li><%= employee.name %> - <%= employee.position %></li>
<% }) %>
</ul>
<% } else { %>
<p>Không tìm thấy kết quả.</p>
<% } %>
<div class="button-container">
<button onclick="window.location.href='/'" class="btn-home">
Quay về trang chính
</button>
<% if (employees.length === 0) { %>
<button onclick="window.location.href='/search'" class="btn-search-again">Thử tìm kiếm lại</button>
<% } %>
</div>
<% } %>
</body>
</html>