-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror_ko.html
More file actions
51 lines (49 loc) · 1.53 KB
/
error_ko.html
File metadata and controls
51 lines (49 loc) · 1.53 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Unable to decompress - zippedPage</title>
<style>
.m {
width: 90%;
max-width: 700px;
margin: 0 auto;
background: #2b2b2b;
padding: 3px 20px 20px 20px;
margin-top: 5%;
border-radius: 20px;
}
.m > * {
width: 100%;
max-width: 700px;
}
body {
background-color: #131313;
color: #fff;
font-family: sans-serif;
}
.button {
background: #515151;
color: #fff;
border: none;
padding: 10px;
border-radius: 10px;
margin: 10px 10px 10px 0;
display: inline;
text-decoration: none;
}
</style>
</head>
<body>
<div class="m">
<h1>압축 해제할 수 없음 - zippedPage</h1>
<span
>URL이 잘못되었거나, 일시적인 오류가 발생했습니다. <br />새로고침하거나, 메인
페이지로 돌아가 코드를 다시 압축해주세요.</span
>
<br /><br />
<a class="button" href="/">메인 페이지로 돌아가기</a>
</div>
</body>
</html>