Showing
2 changed files
with
24 additions
and
0 deletions
... | @@ -9,6 +9,10 @@ let GU_CODE; | ... | @@ -9,6 +9,10 @@ let GU_CODE; |
9 | let ANIMAL_INFO_API_KEY = process.env.REACT_APP_API_KEY; | 9 | let ANIMAL_INFO_API_KEY = process.env.REACT_APP_API_KEY; |
10 | let gu_select; | 10 | let gu_select; |
11 | 11 | ||
12 | +// 사용법 | ||
13 | +router.get('/use', function (req, res) { | ||
14 | + res.render('result', { category: 'use' }); | ||
15 | +}); | ||
12 | 16 | ||
13 | // 사용자가 index 페이지에서 주소선택. 입력값받아오는 함수 | 17 | // 사용자가 index 페이지에서 주소선택. 입력값받아오는 함수 |
14 | router.post('/', function (req, res) { | 18 | router.post('/', function (req, res) { | ... | ... |
views/results/use.ejs
0 → 100644
1 | +<!doctype html> | ||
2 | +<h4>📃사용법</h4> | ||
3 | +<table class="table"> | ||
4 | + <thead class="thead-dark"> | ||
5 | + <tr> | ||
6 | + <th>박은수 오수빈 오픈소스 프로젝트</th> | ||
7 | + </tr> | ||
8 | + </thead> | ||
9 | +</table> | ||
10 | +1. 서울시 자치구 선택하기 | ||
11 | +<br> 2. GOOD 이 뜨면 입력이 잘 받아진것 | ||
12 | +<br>3. 뒤로 돌아가기 | ||
13 | +<br>4. 메뉴중에 하나를 선택 | ||
14 | +<br>5. 이름과 주소를 보여줌.<br> | ||
15 | + | ||
16 | +<p class="sum"><br><a href="http://khuhub.khu.ac.kr/open-source-group1/animal-Info" target="_blank" | ||
17 | + title="animal-info">자세한 | ||
18 | + 내용은 여기서 확인 가능</a> | ||
19 | + | ||
20 | +</p> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment