-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (60 loc) · 1.93 KB
/
index.html
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
<!DOCTYPE html>
<html lang="ko-KR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="css/layout.css">
<title>스토브리그 명대사</title>
</head>
<body>
<header class="header">
<h1><a href="index.html">스토브리그 명대사</a></h1>
<div class="header-click">
<a href="quote.html">요청 게시판</a>
<a class="headerLink" id="login" href="login.html">로그인</a>
<a class="headerLink" id="join" href="join.html">회원가입</a>
<a class="headerLink" id="profile" href="profile.html">회원정보수정</a>
<a class="headerLink" id="logout" href="#">로그아웃</a>
</div>
</header>
<main class="main">
<div class="modal"></div>
<section class="search">
<div>검색</div>
<ul>
<li>
<i class="bi bi-chat-quote-fill"></i>
알고있는 대사가 있나요?
</li>
<li>
<input type="text" name="keyword" id="">
<button class="submit" type="submit">검색</button>
</li>
</ul>
</section>
<section class="container">
<div>
<p class="wording"></p>
<p class="description"></p>
</div>
<div>
<div class="history_label">
<span><i class="bi bi-clock-history"></i>History</span>
<a href="" onclick="removeHistory()"><i class="bi bi-trash3"></i></a>
</div>
<ul id="search_history">
</ul>
</div>
</section>
</main>
<footer>
copyright @<a href="https://github.com/jmp7911/chatAPI" target="_blank">github.com/jmp7911/chatAPI</a>
</footer>
<script src="js/controller.js"></script>
<script src="js/app.js"></script>
<script>
// securedApiRequest('/chat', 'GET');
</script>
</body>
</html>