From 68bd753f1b77f39c1dd5609620ce29f9b8b412b5 Mon Sep 17 00:00:00 2001 From: fei.wang <wf18701153496@163.com> Date: 星期一, 13 五月 2024 17:52:13 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/webapp/page/error.jsp | 70 +++++++++++++++++++++++++++++++++++ 1 files changed, 70 insertions(+), 0 deletions(-) diff --git a/src/webapp/page/error.jsp b/src/webapp/page/error.jsp new file mode 100644 index 0000000..15e772c --- /dev/null +++ b/src/webapp/page/error.jsp @@ -0,0 +1,70 @@ +<%-- + Created by IntelliJ IDEA. + User: Dell + Date: 2023/8/14 + Time: 13:47 + To change this template use File | Settings | File Templates. +--%> +<%@ page contentType="text/html;charset=UTF-8" language="java" %> +<!DOCTYPE html> +<!DOCTYPE html> +<html> +<head> + <title>404 - 椤甸潰鏈壘鍒�</title> + <style> + body { + margin: 0; + padding: 0; + text-align: center; + background: url("/HxzkFlow/images/404.png") no-repeat center center fixed; + background-size: cover; + } + .content { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100vh; + } + + h1 { + font-size: 4rem; + color: #ffffff; + margin-bottom: 1rem; + } + + p { + color: #ffffff; + margin-bottom: 2rem; + } + + .button { + background-color: #ffffff; + color: #000000; + padding: 0.75rem 1.5rem; + text-decoration: none; + border-radius: 4px; + transition: background-color 0.3s ease; + } + + .button:hover { + background-color: #f2f2f2; + } + </style> +</head> +<body style="overflow: hidden"> +<div class="content" style="position: relative;top: 0px;left: 420px"> + <a class="button" href="/HxzkFlow/page/index.jsp" onclick="canselupdate()">杩斿洖涓婚〉</a> +</div> +<script> + + function canselupdate(){ + location.reload(); + // $(".update").hide(); + // $(".heimu").hide(); + // $(".updateZong").hide(); + } +</script> +</body> +</html> + -- Gitblit v1.9.3