13 lines
460 B
Text
13 lines
460 B
Text
doctype html
|
|
html
|
|
head
|
|
meta(charset="UTF-8")
|
|
body
|
|
p 클라이언트에 문제가 발생했습니다. 해결을 위해 브라우저에 있는 데이터를 제거했습니다.
|
|
p 3초 뒤에 메인 페이지로 자동으로 돌아갑니다...
|
|
hr
|
|
p There's a problem in client and deleted data on device to solve it.
|
|
p You will be redirected to the top in 3 seconds.
|
|
script.
|
|
localStorage.clear();
|
|
setTimeout(() => location.href = '/', 3000);
|