24 lines
886 B
Plaintext
24 lines
886 B
Plaintext
|
<%@ 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>
|