forked from SMU-LIKELION-HACKATHON-2TEAM/FrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
writeReview.html
84 lines (82 loc) · 2.62 KB
/
writeReview.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!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/style.css" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="./css/writeReview.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="#" 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="writeReview_header">
<i class="fa-solid fa-pencil"></i>리뷰작성
</div>
<hr />
<div class="writeReview_container">
<p class="writeReview_container1">방문일</p>
<input type="text" style="width: 71px; border: #000000 solid 1px" />
</div>
<hr />
<div class="writeReview_container">
<p class="writeReview_container2">별점</p>
<input type="text" style="width: 71px; border: #000000 solid 1px" />
<span class="star">
★★★★★
<span>★★★★★</span>
<input type="range" oninput="drawStar(this)" value="1" step="1" min="0" max="10">
</span>
</div>
<hr />
<div class="writeReview_container">
<p class="writeReview_container2">후기</p>
<input
type="text"
style="width: 996px; height: 161px; border: #000000 solid 1px"
/>
</div>
<hr />
<div class="complete">
<input type="button" value="완료" id="complete_button" />
</div>
</body>
<script src="js/writeReview.js"></script>
</html>