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.
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>
<form action="${pageContext.request.contextPath}/cart/add" method="post">
<table>
<tr>
<td>购物车编号:</td>
<td><input type="text" name="cartId"/></td>
</tr>
<tr>
<td>用户ID: </td>
<td><input type="text" name="userId" placeholder="请输入用户姓名(汉字)"/></td>
</tr>
<tr>
<td>花卉ID: </td>
<td><input type="text" name="flowerId" placeholder="请输入花卉名称(汉字)"/></td>
</tr>
<tr>
<td>购买数量:</td>
<td><input type="text" name="quantity" value="1"/></td>
</tr>
<tr>
<td>添加时间:</td>
<td><input type="text" name="addTime" placeholder="格式: yyyy-MM-dd HH:mm:ss"/></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="reset" value="重置"/>
<input type="submit" value="添加"/>
</td>
</tr>
</table>
</form>
</body>
</html>