Skip to content

Commit a85f25f

Browse files
committed
modify: 상대경로때문에 index.html static 하게 생성
1 parent 86f1406 commit a85f25f

File tree

1 file changed

+88
-1
lines changed

1 file changed

+88
-1
lines changed

nginx/pages/index.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

nginx/pages/index.html

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<!DOCTYPE html>
2+
<html lang="ko">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Login</title>
7+
<link rel="preconnect" href="https://fonts.googleapis.com" />
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9+
<link
10+
href="https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700&family=Nunito+Sans:ital,wght@1,400;1,900&display=swap"
11+
rel="stylesheet"
12+
/>
13+
<!-- Channel Talk -->
14+
<script>
15+
(function () {
16+
var w = window;
17+
if (w.ChannelIO) {
18+
return w.console.error("ChannelIO script included twice.");
19+
}
20+
var ch = function () {
21+
ch.c(arguments);
22+
};
23+
ch.q = [];
24+
ch.c = function (args) {
25+
ch.q.push(args);
26+
};
27+
w.ChannelIO = ch;
28+
function l() {
29+
if (w.ChannelIOInitialized) {
30+
return;
31+
}
32+
w.ChannelIOInitialized = true;
33+
var s = document.createElement("script");
34+
s.type = "text/javascript";
35+
s.async = true;
36+
s.src = "https://cdn.channel.io/plugin/ch-plugin-web.js";
37+
var x = document.getElementsByTagName("script")[0];
38+
if (x.parentNode) {
39+
x.parentNode.insertBefore(s, x);
40+
}
41+
}
42+
if (document.readyState === "complete") {
43+
l();
44+
} else {
45+
w.addEventListener("DOMContentLoaded", l);
46+
w.addEventListener("load", l);
47+
}
48+
})();
49+
50+
ChannelIO("boot", {
51+
pluginKey: "9bf7ef35-5a3a-410a-b69a-67ef1fd9ed6b",
52+
});
53+
</script>
54+
<!-- Sweetalert2 -->
55+
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
56+
<!-- CUSTOM -->
57+
<link rel="stylesheet" href="./index/index.css" />
58+
</head>
59+
<body>
60+
<div class="login-container">
61+
<div class="login-container-logo">
62+
<img
63+
src="https://velog.velcdn.com/images/velog/profile/9aa07f66-5fcd-41f4-84f2-91d73afcec28/green%20favicon.png"
64+
alt="velog logo image"
65+
/>
66+
<span>벨로그 통계 대시보드</span>
67+
</div>
68+
<form id="login-form">
69+
<input
70+
type="text"
71+
id="access-token"
72+
placeholder="Access Token"
73+
required
74+
/>
75+
<input
76+
type="text"
77+
id="refresh-token"
78+
placeholder="Refresh Token"
79+
required
80+
/>
81+
<button type="submit">Check In</button>
82+
</form>
83+
<span id="login-container-footer">made by Nuung</span>
84+
</div>
85+
<script src="./global.js"></script>
86+
<script src="./index/index.js"></script>
87+
</body>
88+
</html>

0 commit comments

Comments
 (0)