forked from Naerumii/BestChoice_front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
festival_detail.html
126 lines (125 loc) · 4.15 KB
/
festival_detail.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
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
125
126
<!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 src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Yeon+Sung&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/static/css/festival_detail.css" />
<!-- Add icon library -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<script
src="https://kit.fontawesome.com/0c764fa4c5.js"
crossorigin="anonymous"
></script>
<title>FESTIVAL_DETAIL | 축제 상세보기</title>
</head>
<body>
<a class="close-button" href="./festival_page.html">Back</a>
<div class="wrap">
<div class="item-img">
<img id="festival_image" />
</div>
<p></p>
<div style="flex-flow: wrap">
<div id="abc" class="icons">
<h1 id="festival_title"></h1>
</div>
</div>
<div class="wrap2">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">축제설명</span>
</div>
<p
id="festival_desc"
type="text"
class="form-control"
aria-label="Default"
aria-describedby="inputGroup-sizing-default"
>
이 양초는 사실 특별한 힘을 가지고 있어요. 양초를 켜고 소원을 빌면
짜자잔 뭐든지 이뤄지게 된답니다. 하나 사가세요! 대나무 향이 아주
좋아요
</p>
</div>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">축제기간</span>
</div>
<p
id="festival_period"
type="text"
class="form-control"
aria-label="Default"
aria-describedby="inputGroup-sizing-default"
></p>
</div>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">주소</span>
</div>
<p
id="festival_address"
type="text"
class="form-control"
aria-label="Default"
aria-describedby="inputGroup-sizing-default"
></p>
</div>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text">요금</span>
</div>
<p
id="festival_price"
type="text"
class="form-control"
aria-label="Default"
aria-describedby="inputGroup-sizing-default"
></p>
</div>
<div>
<button
id="festival_join"
type="submit"
class="btn btn-primary btn-order"
>
모집하기
</button>
</div>
</div>
</div>
</body>
<script src="/static/js/api.js"></script>
<script src="/static/js/api_festival.js"></script>
<script src="/static/js/festival_detail.js"></script>
</html>