-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
111 lines (105 loc) · 3.77 KB
/
index.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
<!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" />
<link rel="shortcut icon" href="/assets/favicon.png" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap"
rel="stylesheet"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css2?family=Material+Icons"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700&display=swap" rel="stylesheet">
<title>그 영화 재밌어?</title>
</head>
<body>
<div id="root">
<div id="main-page"></div>
</div>
<nav id="main-nav"></nav>
<div id="modal-container">
<div class="modal">
<div class="modal_body">
<button onclick="closeModal()" id="removeModal">X</button>
<div>
<form id="profile-form" onsubmit="changeProfile(event)">
<h1>프로필 관리</h1>
<label>
<img id="prof-img" src="./assets/blank_profile.png" />
<input
onchange="onFileChange(event)"
type="file"
id="camera-upload"
accept="images/*"
style="display: none"
/>
</label>
<div>
<input
value=""
id="profileNickname"
type="text"
placeholder="Username"
/>
</div>
<input id="btnSave" type="submit" value="수정완료" />
</form>
</div>
</div>
</div>
</div>
<div id="review-container">
<div class="review-modal">
<div class="review-modal-body">
<button onclick="closeMyReviewModal()" id="removeModal">X</button>
<div id="review-content">
</div>
</div>
</div>
</div>
<div id="main-review-container">
<div class="main-review-modal">
<div class="main-review-modal-body">
<button onclick="closeMainReviewModal()" id="removeModal">X</button>
<div id="main-review-content">
</div>
</div>
</div>
</div>
<script src="js/main.js" type="module"></script>
</body>
</html>