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
918 B
25 lines
918 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}/reservation/newadd" method="post">
|
|
预约编号:<input type="text" name="rid"><br><br>
|
|
用户编号:<input type="text" name="uid"><br><br>
|
|
实验室编号:<input type="text" name="labId"><br><br>
|
|
开始日期:<input type="date" name="startDate"><br><br>
|
|
结束日期:<input type="date" name="endDate"><br><br>
|
|
状态:
|
|
<select name="status">
|
|
<option value="待审核">待审核</option>
|
|
<option value="已通过">已通过</option>
|
|
<option value="已拒绝">已拒绝</option>
|
|
</select><br><br>
|
|
<input type="submit" value="提交">
|
|
<input type="reset" value="重置">
|
|
</form>
|
|
</body>
|
|
</html> |