Update: web.xml and generated files

This commit is contained in:
likingcode
2026-03-18 15:18:30 +08:00
parent fb9d2d1206
commit 1f60832445
20 changed files with 2071 additions and 2 deletions

39
web/upload/success.jsp Normal file
View File

@@ -0,0 +1,39 @@
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<!DOCTYPE html>
<html>
<head>
<title>操作成功</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card {
background: white;
padding: 40px;
border-radius: 15px;
text-align: center;
}
h1 { color: #11998e; }
.btn {
display: inline-block;
margin-top: 20px;
padding: 12px 30px;
background: #11998e;
color: white;
text-decoration: none;
border-radius: 25px;
}
</style>
</head>
<body>
<div class="card">
<h1>✅ 操作成功!</h1>
<a href="../../index.jsp" class="btn">返回首页</a>
</div>
</body>
</html>