File size: 2,701 Bytes
8eb2cb0 | 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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | <!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">
<!-- jQuery ๋ถ๋ฌ์ค๊ธฐ -->
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<title>์ฌํฌ๋ฆฌ ์ฑ๋ด</title>
</head>
<body>
<!-- Currently BROKEN!
Working prototype on meesrutten.me :) -->
<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>
<!-- <span class="bot__command"></span> -->
<li class="input__nested-list">"๋๋ ๋ํํ์"</li>
<li class="input__nested-list">"๋ฐฅ ๋จน์์ด?"</li>
<li class="input__nested-list">์ ์ฃผ๋์์ ๋ญ๊ฐ ์ ์ผ ์ฌ๋ฐ๋?</li>
</ul>
</li>
</ul>
</div>
<!-- toggle button [voice] -->
<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>
<!-- javascript ํธ์ถ -->
<script src="../static/chatbot.js"></script>
</body>
</html> |