GGWEB/target/MBCA-1.0.0/WEB-INF/jsp/error/EgovServerError.jsp

62 lines
2.0 KiB
Plaintext

<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib uri="http://www.springframework.org/security/tags" prefix="sec" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<meta http-equiv="content-language" content="ko">
<title>Error</title>
<script src="<c:out value="/js/jquery-3.5.1.min.js" />"></script>
<script src="<c:out value="/js/bootstrap.min.js" />"></script>
<link href="<c:out value="/css/normalize.css" />" rel="stylesheet">
<link href="<c:out value="/css/bootstrap.min.css" />" rel="stylesheet">
<link href="<c:out value="/css/style.css" />" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="<c:url value='/css/egov.css'/>" >
</head>
<style>
.errorWrap{
border: 8px solid #094e84;
width:600px;
text-align: left;
position: absolute;
left: 50%;
top: 30%;
transform: translate(-50%, -50%);
}
.errorTable{
margin: 0 auto;
margin-bottom: 20px;
}
.errorTable > tbody > tr > td{
padding:10px;
}
.errorBtn{
width:200px;
margin: 0 auto;
margin-bottom: 20px;
}
</style>
<body style="text-align: center; margin: 0 auto; display: inline; padding-top: 100px;">
<div class="errorWrap">
<img src="<c:url value='/images/error/er_logo.jpg'/>" width="379" height="57" alt="" />
<table class="errorTable">
<tbody>
<tr>
<td><img src="<c:url value='/images/error/danger.jpg'/>" width="74" height="74" alt="" /></td>
<td style="width:300px;">500 Internal Server error</td>
</tr>
</tbody>
</table>
<p class="errorBtn text-center">
<button type="button" class="btn btn-default btn-block" onclick="history.go(-1)">Go Back</button>
</p>
</div>
</body>
</html>