-
Notifications
You must be signed in to change notification settings - Fork 0
/
logout.html
38 lines (38 loc) · 1.36 KB
/
logout.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
<!DOCTYPE html>
<html lang="ko" style="word-break: keep-all" class="">
<head>
<meta charset="UTF-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css">
<link rel="stylesheet" href="style.css">
<script
src="https://t1.kakaocdn.net/kakao_js_sdk/2.7.1/kakao.min.js"
integrity="sha384-kDljxUXHaJ9xAb2AzRd59KxjrFjzHa5TAoFQ6GbYTCAG0bjM55XohjjDT7tDDC01"
crossorigin="anonymous"
></script>
<title>Logout</title>
</head>
<body>
<header>
<nav class="container">
<ul>
<li>
<h1>Logout</h1>
</li>
</ul>
</nav>
</header>
<script>
window.location.href = "%VITE_SERVER%/logout";
</script>
<footer class="site-footer">
<div class="container">
<a href="https://github.com/3ae3ae/EverySlang"><img src="/Github.png" style="width: 20px; height: 20px;" alt="Github"> 3ae3ae/EverySlang</a>
</div>
</footer>
</body>
</html>