记账本------5

剩下就是查询功能

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>
    .a{
        margin-top: 20px;
    }
    .b{
        font-size: 20px;
        width: 160px;
        color: white;
        background-color: greenyellow;
    }
</style>
</head>
<body>
    <div align="center">
        <h1 style="color: cyan;">账单信息查询</h1>
        <a href="index.jsp">返回主页</a>
        <form action="BillServlet?method=search" method="post" onsubmit="return check()">
            <div class="a">
                账单类型<input type="text" id="type" name="type"/>
            </div>
            <div class="a"><input type="text" id="year" name="year" />
            </div>
            <div class="a"><input type="text" id="month" name="month" />
            </div>
            <div class="a"><input type="text" id="day" name="day" />
            </div>
            <div class="a">
                收入<input type="text" id="income" name="income" />
            </div>
            <div class="a">
                支出<input type="text" id="pay" name="pay" />
            </div>
            <div class="a">
                <button type="submit" class="b">查&nbsp;&nbsp;&nbsp;&nbsp;询</button>
            </div>
        </form>
    </div>
</body>
</html>

 

posted @ 2019-02-21 21:30  birdmmxx  阅读(127)  评论(0编辑  收藏  举报