Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
95 lines (92 sloc)
2.4 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
session_start(); | |
?> | |
<html> | |
<head> | |
<title> | |
Add aircraft Details for Maintenance | |
</title> | |
<style> | |
input { | |
border: 1.5px solid #030337; | |
border-radius: 4px; | |
padding: 7px 30px; | |
} | |
input[type=submit] { | |
background-color: #030337; | |
color: white; | |
border-radius: 4px; | |
padding: 7px 45px; | |
margin: 0px 200px | |
} | |
</style> | |
<link rel="stylesheet" type="text/css" href="css/style.css"/> | |
<link rel="stylesheet" href="font-awesome-4.7.0\css\font-awesome.min.css"> | |
</head> | |
<body> | |
<img class="logo" src="images/shutterstock_22.jpg"/> | |
<h1 id="title"> | |
ABC aircraft maintenance | |
</h1> | |
<div> | |
<ul> | |
<li><a href="admin_homepage.php"><i class="fa fa-home" aria-hidden="true"></i> Home</a></li> | |
<li><a href="admin_homepage.php"><i class="fa fa-desktop" aria-hidden="true"></i> Dashboard</a></li> | |
<li><a href="logout_handler.php"><i class="fa fa-sign-out" aria-hidden="true"></i> Logout</a></li> | |
</ul> | |
</div> | |
<form action="add_aircraft_details_form_handler.php" method="post"> | |
<h2>ENTER THE AIRCRAFT DETAILS for</h2> | |
<?php | |
if(isset($_GET['msg']) && $_GET['msg']=='success') | |
{ | |
echo "<strong style='color: green'>The Flight Schedule has been successfully added.</strong> | |
<br> | |
<br>"; | |
} | |
else if(isset($_GET['msg']) && $_GET['msg']=='failed') | |
{ | |
echo "<strong style='color: red'>*Invalid Flight Schedule Details, please enter again.</strong> | |
<br> | |
<br>"; | |
} | |
?> | |
<table cellpadding="5"> | |
<tr> | |
<td class="fix_table">Aircraft Number</td> | |
</tr> | |
<tr> | |
<td class="fix_table"><input type="text" name="flight_no" required></td> | |
</tr> | |
</table> | |
<br> | |
<hr> | |
<table cellpadding="5"> | |
<tr> | |
<td class="fix_table">Arrival of aircraft Date</td> | |
<td class="fix_table">completion maintenance Date</td> | |
</tr> | |
<tr> | |
<td class="fix_table"><input type="date" name="dep_date" required></td> | |
<td class="fix_table"><input type="date" name="arr_date" required></td> | |
</tr> | |
</table> | |
<br> | |
<hr> | |
<table cellpadding="5"> | |
<tr> | |
<td class="fix_table">Jet ID</td> | |
</tr> | |
<tr> | |
<td class="fix_table"> | |
<input type="text" name="jet_id" required> | |
</td> | |
</tr> | |
</table> | |
<br> | |
<input type="submit" value="Submit" name="Submit"> | |
</form> | |
<!--check out addling local host in links and other places | |
--> | |
</body> | |
</html> |