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
517 B
16 lines
517 B
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<html>
|
|
<head>
|
|
<title>添加证券账户</title>
|
|
</head>
|
|
<body>
|
|
<h2>新增证券账户</h2>
|
|
<form action="submitSecurityAccount" method="post">
|
|
账户ID: <input type="text" name="accountId" required><br>
|
|
持有人: <input type="text" name="ownerName" required><br>
|
|
初始资金: <input type="number" step="0.01" name="balance" required><br>
|
|
券商名称: <input type="text" name="broker" required><br>
|
|
<input type="submit" value="提交">
|
|
</form>
|
|
</body>
|
|
</html> |