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
597 B

<%@ page contentType="text/html;charset=UTF-8" %>
<html>
<head>
<title>添加支出记录</title>
</head>
<body>
<h2>新增支出</h2>
<form action="submitExpense" 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="remarks" rows="3"></textarea><br>
<input type="submit" value="提交">
</form>
</body>
</html>