2025-09-19 16:32:24 +09:00

25 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout/default_layout}">
<th:block layout:fragment="content">
<section class="wrapper style1">
<div class="container" style="text-align: center; padding: 4em 0;">
<header class="major">
<h2 th:text="|오류가 발생했습니다 (${statusCode})|">오류가 발생했습니다</h2>
<p th:text="${errorMessage}" style="font-size: 1.5em; color: #e85a4f;">오류 메시지</p>
</header>
<div class="box" style="max-width: 600px; margin: 2em auto; text-align: left;">
<p th:text="${errorDescription}">
오류에 대한 상세 설명입니다. 이 페이지는 접근이 금지되었거나, 요청 처리 중 문제가 발생했을 수 있습니다.
</p>
</div>
<a th:href="@{/}" class="button primary">홈으로 돌아가기</a>
</div>
</section>
</th:block>
</html>