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.
25 lines
900 B
25 lines
900 B
<%@ page contentType="text/html;charset=UTF-8" language="java" pageEncoding="UTF-8" %>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>实验室管理</title>
|
|
</head>
|
|
<body>
|
|
<h3>实验室信息</h3>
|
|
<form action="${pageContext.request.contextPath}/lab/newadd" method="post">
|
|
实验室编号:<input type="text" name="labId"><br><br>
|
|
实验室名称:<input type="text" name="labName"><br><br>
|
|
位置:<input type="text" name="location"><br><br>
|
|
容纳人数:<input type="text" name="capacity"><br><br>
|
|
状态:
|
|
<select name="status">
|
|
<option value="可用">可用</option>
|
|
<option value="维修中">维修中</option>
|
|
<option value="停用">停用</option>
|
|
</select><br><br>
|
|
管理员:<input type="text" name="manager"><br><br>
|
|
<input type="submit" value="添加">
|
|
<input type="reset" value="重置">
|
|
</form>
|
|
</body>
|
|
</html> |