forked from admin/struts2-demo
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
<%@ 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> |