recommendation.ejs
952 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
38
39
40
41
42
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Test</title>
</head>
<body>
<h1><a href="/food">점심메뉴 정하기</a></h1>
<h2>
<%= title %>
</h2>
<ul>
<il><a href="/food/search">검색</a></il><br>
<il><a href="/food/recommendation">추천</a></il>
</ul>
<p><%= description %></p>
<article>
<form action='/food' method='post'>
<p>
가격 :
<input type="text" name="price" placeholder="price">
</p>
<p>
형태 :
<input type="text" name="shape" placeholder="밥, 빵, 면">
</p>
<p>
종류 :
<input type="text" name="kinds" placeholder="한식, 중식, 일식, 양식">
</p>
<p>
<input type="submit">
</p>
</form>
</article>
</body>
</html>