1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <%@include file="./include.jsp"%>
- <!--
- 스프링 메세지 리소스를 사용할 수 없습니다 (서블릿 영역)
- 컨텍스트 파라미터를 등록하여 태그는 사용할 수 있으나, 컨버팅은 안되는 것으로 확인
- -->
- <div id="mcareError" style="padding: 5%;">
- <div data-role="header" class="alert alert-danger">
- <h3 style="color: red;">에러안내</h3>
- </div>
- <div data-role="content" class="alert alert-info">
- <div >
- <p class="errormsg">
- 요청하신 페이지를 찾을 수 없습니다.
- <br>[HTTP 404 ERROR]
- </p>
- </div>
- <div style="text-align: center; padding: 20px 0px;">
- <%-- <a class="ui-btn ui-btn-b" href="${pageContext.request.contextPath}/index.page">[ 확 인 ]</a> --%>
- <button type="button" class="btn btn-primary" onclick="location.href='${pageContext.request.contextPath}/index.page';">확 인</button>
- </div>
- </div>
- </div>
- <div id="adminError">
- <div >
- <p class="errormsg">
- 요청하신 페이지를 찾을 수 없습니다. [HTTP 404 ERROR]
- </p>
- </div>
- <a class="ui-btn ui-btn-b" href="${pageContext.request.contextPath}/index.page" >확인</a>
- </div>
- <script type="text/javascript">
- $(document).on('pagebeforeshow', function(e, ui) {
- var mplus = new mplus_mobile();
- if (mplus.isMobile() == true) {
- $('#adminError').hide();
- } else {
- $('#mcareError').hide();
- }
- });
- </script>
|