Init
This commit is contained in:
26
web/insertFlight.jsp
Normal file
26
web/insertFlight.jsp
Normal file
@@ -0,0 +1,26 @@
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
|
||||
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>添加航班信息</title>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<h1>添加数据</h1>
|
||||
|
||||
<form action="insert" method="post">
|
||||
<label>航 号: <input type="text" name="flightId" value="${flight.flightId}"></label><br>
|
||||
<label>航空公司: <input type="text" name="company"></label><br>
|
||||
<label>出发机场: <input type="text" name="departureAirport"></label><br>
|
||||
<label>达到机场: <input type="text" name="arriveAirport"></label><br>
|
||||
<label>出发时间: <input type="text" name="departureTime"></label><br>
|
||||
<label>到达时间: <input type="text" name="arriveTime"></label><br>
|
||||
<label>机 型: <input type="text" name="model"></label><br>
|
||||
<input type="submit" value="提交">
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user