-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdday-setup.html
More file actions
36 lines (36 loc) · 1.01 KB
/
dday-setup.html
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>D-Day 설정 - 리다이렉트</title>
<meta http-equiv="refresh" content="0; url=admin.html">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #121212;
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
}
.redirect-message {
text-align: center;
}
a {
color: #00d4ff;
}
</style>
</head>
<body>
<div class="redirect-message">
<p>새로운 관리자 페이지로 이동합니다...</p>
<p>자동으로 이동하지 않으면 <a href="admin.html">여기를 클릭</a>하세요.</p>
</div>
<script>
window.location.href = 'admin.html';
</script>
</body>
</html>