<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ page isErrorPage="true" %>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<meta http-equiv="content-language" content="ko">
<title>오류페이지</title>
	
	<!-- css -->
	<link rel="stylesheet" href="/publish/common/css/reset.css">
	<link rel="stylesheet" href="/publish/common/css/font.css">
	<link rel="stylesheet" href="/publish/adm/css/common.css">
	<link rel="stylesheet" href="/publish/adm/css/style.css">
	<link rel="stylesheet" href="/publish/adm/css/button.css">
	
	<link rel="stylesheet" href="/publish/common/error/error.css">
	<!-- //css -->
	
	<script type="text/javascript">
	function fncGoAfterErrorPage(){
	    history.back(-2);
	}
	</script>
</head>
<body>

	<div class="error_container" style="height:100vh;">
	    <div class="error_contents">
	      <i class="icon error"></i>
	      <h1>ERROR PAGE</h1>
	      <p class="secondary_title">페이지가 <b>없거나 잘못된 경로</b> 입니다.</p>
	      <p class="summary">
	        경로를 다시 확인하시고 이용해주시기 바랍니다.<br>
	        이용에 불편을 드려 대단히 죄송합니다.
	      </p>
	      <button type="button" class="btn btn_page_move" onClick="fncGoAfterErrorPage();">이전페이지</button>
	    </div>
	  </div>
	  
</body>
</html>