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.

16 lines
518 B

<%@ page contentType="text/html;charset=UTF-8" %>
<html>
<head>
<title>添加持股记录</title>
</head>
<body>
<h2>新增持股</h2>
<form action="submitStockHolding" method="post">
股票代码: <input type="text" name="symbol" required><br>
数量: <input type="number" name="quantity" min="1" required><br>
买入价格: <input type="number" step="0.01" name="purchasePrice" required><br>
账户ID: <input type="text" name="stockId" required><br>
<input type="submit" value="提交">
</form>
</body>
</html>