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.

45 lines
1.2 KiB

<%--
Created by IntelliJ IDEA.
User: 杨森
Date: 2025/4/2
Time: 15:38
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>添加留言人</title>
</head>
<body>
<form action="ys/Messagemodule" method="post">
<tr>
<td>留言人id</td>
<td width="20"></td>
<td><input type="text" name="mmid" placeholder="留言人id"></td>
</tr>
<tr>
<td>留言人姓名</td>
<td width="20"></td>
<td><input type="text" name="mmname" placeholder="留言人姓名"></td>
</tr>
<tr>
<td>留言日期</td>
<td width="20"></td>
<td><input type="text" name="mmdate" placeholder="留言日期"></td>
</tr>
<tr>
<td>留言内容</td>
<td width="20"></td>
<td><input type="text" name="mmcontent" placeholder="留言内容"></td>
</tr>
<tr>
<td align="right"><input type="reset" value="重置信息"></td>
<td></td>
<td align="center">
<input type="submit" value="添加">
</td>
</tr>
</form>
</body>
</html>