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.

31 lines
973 B

This file contains ambiguous Unicode characters!

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.

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>添加院系</title>
</head>
<body>
<%-- 修改action路径指向新的请求 --%>
<form action="${pageContext.request.contextPath}/department/add" method="post">
<table border="1" align="center" width="500">
<tr>
<td>院系ID</td>
<td><input type="text" name="did" placeholder="请输入院系ID"></td>
</tr>
<tr>
<td>院系名称:</td>
<td><input type="text" name="dname" placeholder="请输入院系名称"></td>
</tr>
<tr>
<td>院系描述:</td>
<td><textarea name="desc" rows="5" cols="30"></textarea></td>
</tr>
<tr>
<td align="center" colspan="2">
<input type="submit" value="提交">
<input type="reset" value="重置">
</td>
</tr>
</table>
</form>
</body>
</html>