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/msg.jsp

36 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-12-20 23:41:14 +08:00
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
2025-01-14 16:01:14 +08:00
<!DOCTYPE html>
<html lang="en">
2024-12-20 23:41:14 +08:00
2025-01-14 16:01:14 +08:00
<head>
<script src="https://www.liyansheng.top/cdn/watermark.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>提示</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</head>
2024-12-20 23:41:14 +08:00
2025-01-14 16:01:14 +08:00
<body>
<div class="container mt-5">
<!-- 页头 -->
<div class="card shadow mb-4">
<div class="card-header bg-warning text-dark text-center">
<h2>提示</h2>
</div>
</div>
2024-12-20 23:41:14 +08:00
2025-01-14 16:01:14 +08:00
<!-- 提示消息 -->
<div class="card shadow">
<div class="card-body text-center">
<h3>${sessionScope.msg}</h3>
<div class="mt-4">
<button class="btn btn-primary btn-lg" onclick="window.history.back();">返回</button>
</div>
</div>
</div>
</div>
</body>
2024-12-20 23:41:14 +08:00
2025-01-14 16:01:14 +08:00
</html>