You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<%--
Created by IntelliJ IDEA.
User: 小新
Date: 2026/5/8
Time: 16:24
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>新增通知</title>
</head>
<body>
<h3>通知新增表单</h3>
<form action="${pageContext.request.contextPath}/notice/add" method="post">
<table border="1" cellpadding="8">
<tr>
<td>通知编号:</td>
<td><input type="number" name="noticeId" required></td>
</tr>
<tr>
<td>用户ID: </td>
<td><input type="number" name="userId" required></td>
</tr>
<tr>
<td>通知标题:</td>
<td><input type="text" name="noticeTitle" required></td>
</tr>
<tr>
<td>通知内容:</td>
<td><textarea name="noticeContent" rows="4" cols="30" required></textarea></td>
</tr>
<tr>
<td>通知类型:</td>
<td>
<input type="radio" name="noticeType" value="系统通知" checked>系统通知
<input type="radio" name="noticeType" value="公告提醒">公告提醒
</td>
</tr>
<tr>
<td>通知状态:</td>
<td><input type="number" name="noticeStatus" required></td>
</tr>
<tr>
<td>创建时间:</td>
<td><input type="date" name="createTime" required></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="提交新增">
<input type="reset" value="重置表单">
</td>
</tr>
</table>
</form>
</body>
</html>