24 lines
917 B
PHP
24 lines
917 B
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
|
|
|
|
<head>
|
|
<title>기기 확인 중...</title>
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
|
|
<meta http-equiv="refresh" content="3;url=<?php echo $redirect_url; ?>"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0, minimum-scale=1.0"/>
|
|
<style type="text/css">
|
|
textarea { width: 97%; height: 100px; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>기기 확인 중...</h1>
|
|
<p>접속한 기기에 맞는 최적의 설정을 찾고 있습니다.</p>
|
|
<p>3초 후 이동합니다.</p>
|
|
<p>문제가 있을 시 아래 정보를 관리자에게 알려주세요.</p>
|
|
<p><textarea><?php echo $ua; ?></textarea></p>
|
|
</body>
|
|
|
|
</html>
|