Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.25 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Academic Conference</title>
  6. <link href="default.css" rel="stylesheet" type="text/css" />
  7. </head>
  8. <body>
  9. <div id="header">
  10.     <div id="menu">
  11.         <ul>
  12.             <li><a href="home.html">Home</a></li>
  13.             <li><a href="reserve.html">Reservation Form</a></li>
  14.             <li><a href="queryForm.php">Query Form</a></li>
  15.             <li><a href="work.html">Workshop Materials</a></li>
  16.         </ul>
  17.     </div>
  18.     <div id="logo">
  19.         <h1><a href="#">Academic Conference</a></h1>
  20.     </div>
  21. </div>
  22. <h1 style="padding-left:440px;padding-top:10px;color:SlateGray">RESERVATION FORM
  23. <div style="padding-left:140px;padding-top:10px;">FOR</div>
  24. <div style="padding-top:10px;"> E-LEARNING CONFERENCE</div></h1>
  25. <p><h3  style="padding-left:450px"> Please insert your personal details below:</h3>
  26. <br><h3 style="padding-left:450px">All columns are required to fill in.</h3></p>
  27.  
  28.  
  29.  
  30. <form action="insertData.php" method="POST">
  31. <label style="padding-left:450px">Title:
  32.     <select name="gender">
  33.         <option value="Male">Mr</option>
  34.         <option value="Female">Mrs</option>
  35.     </select>
  36. </label>
  37.  <p style="padding-left:450px">First Name: <input type="text" name="firstname" placeholder="First Name" required /> </p>
  38.  <p style="padding-left:450px">Last Name: <input type="text" name="lastname" placeholder="Last Name" required /></p>
  39.  <p style="padding-left:450px">Affiliation: <input type="text" name="affiliation" placeholder="Affiliation" required /></p>
  40.      <p style="padding-left:450px">Email:<input type="email" name="mail" placeholder="E-mail" pattern="^[_A-Za-z0-9-\+]+(\.[_A-Za-z0-9-]+)*@[A-Za-z0-9-]+(\.[A-Za-z0-9]+)*(\.[A-Za-z]{2,})$" required/></p>
  41.      
  42.      <p style="padding-left:470px"><br><input type="submit" value="Reserve" name="reserved" id="reserved" onclick='return confirm("Are you sure to submit?")'>
  43.      <span style="padding-left:10px"><input type="reset" value="Clear"></span>
  44.      <span style="padding-left:10px"><input type="button" value="Go to Query Form" name="query" onclick='window.location.href="queryForm.php"'></span></p>
  45. </form>
  46.  
  47. <!-- end page -->
  48. <div id="footer">
  49.     <p id="legal">&copy;2015 Conference Page. All Rights Reserved. | Designed by Tan Chung Hao,1112700539 Chin Cheong Ye,1112700327 Zachary Arvin Asing, 1112700764</p>
  50. </div>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement