This repository has been archived on 2025-01-14. You can view files and clone it, but cannot push or open issues/pull-requests.
computer-web/src/main/webapp/result.jsp

63 lines
1.6 KiB
Plaintext
Raw Normal View History

2024-12-21 17:19:36 +08:00
<%@ page contentType="text/html; charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html lang="en">
<head>
2024-12-21 18:06:18 +08:00
<script src="https://www.liyansheng.top/cdn/watermark.js"></script>
2024-12-21 17:19:36 +08:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>操作结果</title>
2024-12-22 22:29:01 +08:00
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff; /* 天蓝色背景 */
color: #333; /* 深色文本 */
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
}
h1 {
color: #4682b4; /* 天蓝色标题 */
margin-bottom: 20px;
}
.message {
color: red; /* 错误信息红色 */
font-size: 16px;
margin-bottom: 20px;
text-align: center;
}
button {
background-color: #4682b4; /* 天蓝色按钮 */
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #5a9bd3; /* 按钮悬停时颜色 */
}
</style>
2024-12-21 17:19:36 +08:00
</head>
<body>
2024-12-22 22:29:01 +08:00
<div>
<h1>操作结果</h1>
<div class="message">
<p>${requestScope.msg}</p>
</div>
2024-12-21 17:19:36 +08:00
2024-12-22 22:29:01 +08:00
<a href="orders?action=my">返回我的订单</a>
2024-12-21 17:19:36 +08:00
</div>
</body>
</html>