forked from pk1997/Airline-management-systems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook.html
29 lines (25 loc) · 1.06 KB
/
book.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
<!--Created By Pavan
on 26/09/17
for DBMS
-->
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<link rel="stylesheet" type="text/css" href="mystyle.css">
<div class="register">
<h1>FLIGHT RESESRVATION SYSTEM</h1>
<form action="book.php" method="post" class="form__field">
<!--<input type="text" name="passengerid" id="passengerid" placeholder="passengerid" />-->
<input type="text" name="fname" id="fname" placeholder="firstname" required="required"/>
<input type="text" name="lname" id="lname" placeholder="lastname" />
<input type="email" name="mail" id="mail" placeholder="email" required="required" />
<input type="text" name="age" id="age" placeholder="seatno" required="required"/>
<input type="text" name="password" id="password" placeholder="FlightId" required="required"/>
<input type="date" name="date" id="date" placeholder="date" required="required"/>
<button type="submit" class="btn btn-primary btn-block btn-large">book</button>
</form>
</div>
</body>
</html>