search.ejs
717 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/../style.css">
<title>Test</title>
</head>
<body>
<h1><a href="/food">점심 메뉴 정하기</a></h1>
<div class="grid">
<ul>
<il><a href="/food/search">검색</a></il><br>
<il><a href="/food/recommendation">추천</a></il>
</ul>
<article>
<h2>
<%= title %>
</h2>
<p><%= description %></p>
<form action='/food/search' method='post'>
<p>
검색 :
<input type="text" name="title" placeholder="검색">
<input type="submit">
</p>
</form>
</article>
</div class="grid">
</body>
</html>