Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Airline Reservation System</title>
  4. </head>
  5. <style>
  6. body{
  7. margin: 100px;
  8. }
  9. </style>
  10. <body>
  11. <table border="1" style="height:400px; width:500px; margin:auto; background:#af3213; text-align: center;">
  12. <tr>
  13. <td>
  14. <p style="text-align:center; margin-top:-120px; font-size:40px;">Airline Reservation System</p>
  15. <p style="text-align:center">Menu</p>
  16.  
  17. <div id="menu">
  18. <input type="radio" name="class" value="First Class" checked>First Class</input>
  19. <input type="radio" name="class" value="Economy Class">Economy</input>
  20. <br><br>
  21. </div>
  22. <form id="frm" role="form" onsubmit="return validateForm()" method="POST" action="insert.php">
  23. <div id="info">
  24. First Name: <input type="text" name="fname"></input><br>
  25. Last Name: <input type="text" name="lname"></input><br>
  26. <button type="submit" onclick="saveData()" class="btn btn-primary crud-submit btn-success" style="margin-left: center; margin-top: 10px;">Submit</button>
  27. </div>
  28. </form>
  29. </td>
  30. </tr>
  31. </table>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement