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.
21 lines
600 B
21 lines
600 B
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<html>
|
|
<head>
|
|
<title>添加收入记录</title>
|
|
</head>
|
|
<body>
|
|
<h2>新增收入</h2>
|
|
<form action="submitIncome" method="post">
|
|
金额: <input type="number" step="0.01" name="amount" required><br>
|
|
日期: <input type="date" name="date" required><br>
|
|
类别:
|
|
<select name="category">
|
|
<option value="工资">工资</option>
|
|
<option value="投资">投资</option>
|
|
<option value="其他">其他</option>
|
|
</select><br>
|
|
描述: <textarea name="description" rows="3"></textarea><br>
|
|
<input type="submit" value="提交">
|
|
</form>
|
|
</body>
|
|
</html> |