This repository has been archived on 2025-01-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2024-12-21 16:41:21 +08:00
|
|
|
<%@ page contentType="text/html; charset=UTF-8" language="java" %>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2024-12-21 18:06:18 +08:00
|
|
|
<script src="https://www.liyansheng.top/cdn/watermark.js"></script>
|
2024-12-21 16:41:21 +08:00
|
|
|
<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">
|
2024-12-21 17:03:33 +08:00
|
|
|
<label for="price">总金额: </label><br>
|
|
|
|
<input type="text" id="price" name="price" value="${order.totalPrice}" readonly><br><br>
|
|
|
|
<label for="address">地址: </label><br>
|
|
|
|
<input type="text" id="address" name="address" value="${order.address}" required><br><br>
|
|
|
|
<label for="remark">商品信息: </label><br>
|
|
|
|
<textarea id="remark" name="remark" rows="15" cols="30" readonly>${order.remark}</textarea><br><br>
|
2024-12-21 16:41:21 +08:00
|
|
|
<input type="submit" value="我已确认">
|
|
|
|
</form>
|
|
|
|
<br>
|
|
|
|
<a href="/">主页</a>
|
|
|
|
</body>
|
|
|
|
</html>
|