-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathreview.html
More file actions
124 lines (124 loc) · 3.4 KB
/
review.html
File metadata and controls
124 lines (124 loc) · 3.4 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./css/postComment.css" rel="stylesheet" type="text/css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
<!-- <script>
const urlP = new URLSearchParams(window.location.search);
const mId = urlP.get("mId");
</script> -->
<script defer src="./js/review.js"></script>
<title>review page</title>
</head>
<body>
<div>
<div class="header" a href="index.html">
<a href="./index.html">
<h1 class="title">
Help the Pro9rammers!
<span class="drop"></span>
<span class="drop"></span>
<span class="drop"></span>
<span class="drop"></span>
</h1>
</a>
</div>
</div>
<div class="content"></div>
<div class="commentNickPwRating">
<div class="nickname">
<label for="nickname"></label>
<input
type="text"
name="nickname"
placeholder="Nickname"
id="nickname"
autocomplete="off"
required
/>
</div>
<div class="pw">
<label for="pw"></label>
<input
type="text"
name="pw"
id="pw"
placeholder="Password"
autocomplete="off"
required
/>
</div>
<div class="rating">
<label for="rating">rating:</label>
<input
type="number"
min="0"
max="10"
step="1"
name="rating"
id="rating"
required
/>
</div>
</div>
<div class="commentUp">
<div class="comment">
<label for="comment"></label>
<input
id="comment"
type="text"
placeholder="의견을 남겨주세요"
style="width: 80%; height: 40px; font-size: 2vw"
autocomplete="off"
/>
</div>
<button id="postingBtn" type="button" button class="button">
<span class="inner"><strong>등록</strong></span>
</button>
</div>
<div class="commentList">
<h3>review list</h3>
<div class="commentLi"></div>
</div>
<footer>
<ul>
<li>
<a href="https://github.com/JJQKR/" target="_blank"
><i class="fa-brands fa-github"></i>
</a>
<p class="member_name">강연주</p>
</li>
<li>
<a href="https://github.com/LastDice" target="_blank"
><i class="fa-brands fa-github"></i>
</a>
<p class="member_name">고종원</p>
</li>
<li>
<a href="https://github.com/sangjun231" target="_blank"
><i class="fa-brands fa-github"></i>
</a>
<p class="member_name">신상준</p>
</li>
<li>
<a href="https://github.com/jonghoon7431" target="_blank"
><i class="fa-brands fa-github"></i>
</a>
<p class="member_name">이종훈</p>
</li>
<li>
<a href="https://github.com/MiMing-00" target="_blank"
><i class="fa-brands fa-github"></i>
</a>
<p class="member_name">최혜미</p>
</li>
</ul>
</footer>
<button class="top_button">top</button>
</body>
</html>