forked from SMU-LIKELION-HACKATHON-2TEAM/FrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathallReview.html
More file actions
69 lines (65 loc) · 2.1 KB
/
allReview.html
File metadata and controls
69 lines (65 loc) · 2.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/allReview.css" />
<link rel="icon" href="img/logo.png" />
<script
src="https://kit.fontawesome.com/ba49d39b5e.js"
crossorigin="anonymous"
></script>
<title>가게리뷰 모아보기 페이지</title>
</head>
<body>
<nav class="navbar">
<div class="navbar_logo">
<img src="img/logo.png" alt="로고" />
<a href="main.html" class="service_name">소확행</a>
</div>
<div class="search-mode">
<div class="search_icon">
<i class="fas fa-search"></i>
</div>
<input type="text" class="inputbox" placeholder="가게를 검색해보세요" />
</div>
<ul class="navbar_menu">
<p class="icon_name">
<span>소</span>상공인·<span>소</span>비자에게 <span>확</span>실한
<span>행</span>복
</p>
</ul>
<ul class="navbar_icon">
<li>
<p><i class="fa-regular fa-user" onclick="toggleUserPanel()"></i></p>
</li>
</ul>
</nav>
<!-- 사용자 패널 -->
<div id="userPanel" class="user_panel">
<div class="panel_content">
<ul>
<li><a href="#">로그아웃</a></li>
<li><a href="#">마이페이지</a></li>
</ul>
</div>
</div>
<div class="allReview_header">
<div class="image-container">
<img src="img/allReview-header.png" alt="" />
<div class="text-container">
<h2>방문자 리뷰</h2>
</div>
</div>
<div class="allReview_header2" id="allReviewHeader">
</div>
</div>
<hr style="border: solid 1px lightgray; margin-top: -10px;" />
<div id="reviewBigWrap">
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
<script src="./js/allReview.js"></script>
</body>
</html>