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.

30 lines
742 B

<%--
Created by IntelliJ IDEA.
User: 5300 PC 二合一
Date: 2025/4/3
Time: 16:59
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="cwxx/add" method="post">
车位编号:<input type="text" name="parkingID">
<br>
车位位置:<input type="text" name="parkingLocation">
<br>
是否有车位:<select name="parkingStatus">
<option value="是">是</option>
<option value="否">否</option>
</select>
<br>
详情:<textarea name="parkingContent" rows="5" cols="35"></textarea>
<br>
<input type="submit" value="添加">
</form>
</body>
</html>