forked from Naerumii/BestChoice_front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recruit_change.html
72 lines (72 loc) · 2.6 KB
/
recruit_change.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
<!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/change_recruit.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>Recruit</h1>
<section>
<h3>신청목록</h3>
<div class="place">
<p id="review_desc">
신청자 닉네임   :    <span
id="recruit_user"
></span>
</p>
</div>
<div class="place">
<p id="review_desc">
신청한 모집게시글   :    <span
id="recruit_join"
></span>
</p>
</div>
<div class="place">
<p id="review_desc">
신청 상태   :    <span
id="recruit_status"
></span>
</p>
</div>
<div id="btn">
<button type="button" onclick="changeStatus(1)">수락</button>
<button type="button" onclick="changeStatus(2)">거절</button>
</div>
</section>
</article>
</body>
<!-- Script -->
<script src="/static/js/api.js"></script>
<script src="/static/js/api_join.js"></script>
<script src="/static/js/api_recruit.js"></script>
<script src="/static/js/recruit_change.js"></script>
</html>