| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| |
| <link rel="stylesheet" href="../static/chatbot.css"> |
| <link rel="stylesheet" href="../static/loading_bar.css"> |
|
|
| <link rel="icon" href="../static/logo.png"> |
| |
| |
| <script src="http://code.jquery.com/jquery-latest.min.js"></script> |
| |
| <title>์ฌํฌ๋ฆฌ ์ฑ๋ด</title> |
| </head> |
| <body> |
| |
|
|
|
|
|
|
| |
| |
| <main class="page__main"> |
| <div class="block--background"> |
| <div class="loading-bar" id="loadingBar"> |
| <div class="chatbot__overview"> |
| <ul class="chatlist"> |
| <li class="bot__output bot__output--standard"><span class="bot__command">์๋
ํ์ฐ๊ฝ!</span></li> |
| <li class="bot__output bot__output--standard"><span class="bot__command">์ค๋ ํ๋ฃจ ์ด๋ ์ฐ๊ฝ?</span></li> |
| <li class="bot__output bot__output--standard"> |
| <span class="bot__output--second-sentence">๋ํํฐ ์ด๋ฐ ๊ฒ๋ ๋ฌผ์ด๋ณด๋ผ</span> |
| <ul> |
| <li class="input__nested-list">"๋ ๋ญ ํ๊ณ ์์ด?"</li> |
| |
| <li class="input__nested-list">"๋๋ ๋ํํ์"</li> |
| <li class="input__nested-list">"๋ฐฅ ๋จน์์ด?"</li> |
| <li class="input__nested-list">์ ์ฃผ๋์์ ๋ญ๊ฐ ์ ์ผ ์ฌ๋ฐ๋?</li> |
| </ul> |
| |
| </li> |
| </ul> |
| </div> |
| |
| |
| |
| <div> |
| <fieldset> |
| <label style="margin: 0 auto;"> |
| <input role="switch" id="voice_yn" type="checkbox" /> |
| <span style="color:#84a444ff">voice</span> |
| </label> |
| |
| </fieldset> |
| </div> |
| |
|
|
| |
| |
| <div class="chatbox-area"> |
| <form action="" id="chatform"> |
| <textarea placeholder="๋ฌธ์ฅ์ ์
๋ ฅํด์ฃผ์ธ์!" class="chatbox" name="chatbox" resize: "none" minlength="2">์๋
ํ์ธ์</textarea> |
| <input class="submit-button" type="submit" value="์ ์ก"> |
| </form> |
| </div> |
| <div class="block--background"></div> |
|
|
| </main> |
|
|
|
|
| <div id="hidden_area" style="display:none"> |
| </div> |
| |
| <div class="main"> |
| <div class="loading_circle" hidden></div> |
| </div> |
|
|
| |
| <script src="../static/chatbot.js"></script> |
| </body> |
| </html> |