This repository has been archived on 2025-01-14. You can view files and clone it, but cannot push or open issues/pull-requests.
computer-web/src/main/webapp/checkOrder.jsp

24 lines
886 B
Plaintext
Raw Normal View History

2024-12-21 16:41:21 +08:00
<%@ page contentType="text/html; charset=UTF-8" language="java" %>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>订单确认</title>
</head>
<body>
<h1>订单确认</h1>
<form action="/orders" method="post">
<label for="name">总金额: </label><br>
<input type="text" id="name" name="name" value="${order.totalPrice}" disabled><br><br>
<label for="price">地址: </label><br>
<input type="text" id="price" name="price" value="${order.address}" required><br><br>
<label for="stock">商品信息: </label><br>
<textarea id="stock" name="stock" rows="15" cols="30" disabled>${order.remark}</textarea><br><br>
<input type="submit" value="我已确认">
</form>
<br>
<a href="/">主页</a>
</body>
</html>