forked from dosion9/team-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.html
95 lines (92 loc) · 2.91 KB
/
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style/style.css" />
<link rel="shortcut icon" href="./assets/ico/new.ico" />
<title>5Flix - 상세페이지</title>
</head>
<body>
<header class="header">
<nav class="nav container">
<a href="./" class="nav__item">
<img src="./assets/svg/logo.svg" alt="Doflix" class="logo" />
</a>
</nav>
</header>
<main>
<div class="hero">
<div class="container row">
<input
type="text"
class="input input-lg"
id="search__input"
placeholder="입력 후 Enter 나 검색버튼을 누르세요. (한/영 가능)"
/>
<button type="button" class="btn btn-lg btn-red" id="search__btn">검색</button>
</div>
</div>
<section class="container">
<div class="container__detail"></div>
<div class="container__cast"></div>
</section>
<section class="container distance">
<div class="title-box">
<h3>한줄평</h3>
<p class="comment-number">(0)</p>
</div>
<form class="comment-form">
<input
type="text"
id="username"
class="name-area"
name="username"
value=""
placeholder="닉네임"
autocomplete="off"
/>
<input
type="password"
id="password"
class="password-area"
placeholder="비밀번호"
maxlength="6"
autocomplete="off"
/>
<input
type="text"
id="comment"
name="comment"
class="comment-area"
value=""
placeholder="한줄평을 등록해주세요."
autocomplete="off"
/>
<button id="submitBtn" class="submit-btn-red">등록</button>
</form>
<div class="comment-box">
<ul class="comment-list"></ul>
</div>
</section>
</main>
<footer class="footer line-top">
<section class="container">
<div class="row">
<a href="https://developer.themoviedb.org/docs" target="_blank">
<img src="https://files.readme.io/29c6fee-blue_short.svg" alt="The Movie Database (TMDB)" class="logo" />
</a>
</div>
<div class="row">
<p>
본 프로젝트는 TMDB API를 활용하고 있으나, 이는 TMDB로부터 공식적으로 승인되거나 인증받은 것이 아님을
밝힙니다.
</p>
</div>
</section>
</footer>
<script type="module" src="./src/detail.js"></script>
<script type="module" src="./src/comment.js"></script>
<script type="module" src="./src/search.js"></script>
</body>
</html>