Guest User

Untitled

a guest
Apr 22nd, 2015
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.03 KB | None | 0 0
  1. <?php
  2. $PageTitle = "Contact Mike";
  3. $section = "contact";
  4. include('inc/header.php');
  5. ?>
  6.  
  7.     <div class="section page">
  8.  
  9.         <div class="wrapper">
  10.        
  11.             <h1>Contact</h1>
  12.            
  13.             <p>I'd love to hear from you! complete the form to send me an email.</p>
  14.            
  15.             <form method="post" action="contact-process.php">
  16.                
  17.                 <table>
  18.                     <tr>
  19.                        
  20.                         <th>
  21.                             <label for="name">Name</label>
  22.                         </th>
  23.                        
  24.                         <td>
  25.                             <input type="text" name="name" id="name">
  26.                         </td>
  27.                        
  28.                     </tr>                  
  29.                     <tr>
  30.                        
  31.                         <th>
  32.                             <label for="email">Email</label>
  33.                         </th>
  34.                        
  35.                         <td>
  36.                             <input type="text" name="email" id="email">
  37.                         </td>
  38.                        
  39.                     </tr>
  40.                                         <tr>
  41.                        
  42.                         <th>
  43.                             <label for="name">Message</label>
  44.                         </th>
  45.                        
  46.                         <td>
  47.                             <textarea name="message" id="message"></textarea>
  48.                         </td>
  49.                        
  50.                     </tr>
  51.                 </table>
  52.                 <input type="submit" value="Send"
  53.                
  54.             </form>
  55.            
  56.         </div>
  57.  
  58.     </div>
  59.  
  60. <?php include('inc/footer.php'); ?>
Advertisement
Add Comment
Please, Sign In to add comment