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.

14 lines
436 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<body>
<h3>支出信息录入</h3>
<form action="addExpense" method="post">
支出ID<input name="id"><br><br>
用户ID<input name="userId"><br><br>
支出类型:<input name="type"><br><br>
金额:<input name="money"><br><br>
时间:<input name="expenseTime"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>