forked from Naerumii/BestChoice_front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
review_create.html
77 lines (77 loc) · 2.55 KB
/
review_create.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
<!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" />
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
<!-- Script -->
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<!-- <script src="script.js"></script> -->
<script
type="text/javascript"
src="http://code.jquery.com/jquery-latest.js"
></script>
<!-- Css -->
<link rel="stylesheet" href="/static/css/create_content_f.css" />
<!-- <link rel="stylesheet" href="style.css"> -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/aos.css" />
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Oswald&display=swap"> -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;900&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap"
/>
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300&display=swap" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous"> -->
<title>게시글 작성하기</title>
</head>
<body>
<article class="board">
<h1>REVIEW</h1>
<section>
<h3>리뷰 작성하기</h3>
<p>
<input
placeholder="제목을 입력하세요."
id="review_title"
type="text"
class="rag-title"
/>
</p>
<div class="place">
<textarea
rows="12"
class="rag-post"
id="review_desc"
style="resize: none"
placeholder="내용을 입력하세요."
></textarea>
</div>
<div>
<input
type="file"
id="file"
style="
margin-right: 8rem;
margin-bottom: 10px;
box-sizing: border-box;
"
/>
</div>
<div id="btn">
<button type="button" onclick="writeReviewEvent()">등록하기</button>
</div>
</section>
</article>
</body>
<!-- Script -->
<script src="/static/js/api.js"></script>
<script src="/static/js/api_review.js"></script>
<script src="/static/js/review_create.js"></script>
</html>