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/addComputer.jsp

25 lines
867 B
Plaintext
Raw Normal View History

2024-12-21 01:42:43 +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 01:42:43 +08:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-12-21 18:06:18 +08:00
<title>电脑产品发布</title>
2024-12-21 01:42:43 +08:00
</head>
<body>
2024-12-21 18:06:18 +08:00
<h1>电脑产品发布</h1>
2024-12-21 01:42:43 +08:00
<form action="/addComputer" method="post">
2024-12-21 18:06:18 +08:00
<label for="name">名称: </label><br>
2024-12-21 01:42:43 +08:00
<input type="text" id="name" name="name"><br><br>
2024-12-21 18:06:18 +08:00
<label for="price">价格: </label><br>
2024-12-21 01:42:43 +08:00
<input type="text" id="price" name="price"><br><br>
2024-12-21 18:06:18 +08:00
<label for="stock">库存: </label><br>
2024-12-21 01:42:43 +08:00
<input type="text" id="stock" name="stock"><br><br>
2024-12-21 18:06:18 +08:00
<input type="submit" value="确定">
2024-12-21 01:42:43 +08:00
</form>
<br>
2024-12-21 18:06:18 +08:00
<a href="/computerList">返回电脑列表</a>
2024-12-21 01:42:43 +08:00
</body>
</html>