Advertisement
Guest User

index.tmpl.php

a guest
Dec 18th, 2012
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <title>Mailing List</title>
  6.         <style>
  7.             li { list-style: none;}
  8.             .notice { color:red; font-size: italic;}
  9.         </style>
  10.     </head>
  11.     <body>
  12.         <h1>
  13.             Join the Mailing list
  14.         </h1>
  15.         <form action="" method="post">
  16.             <?php if (isset($status) ) : ?>
  17.             <p class="notice"><?php echo $status; ?> </p>
  18.         <?php endif; ?>
  19.             <ul>
  20.                 <li>
  21.                     <label for="name">Your Name</label>
  22.                     <input type="text" name="name" value="<?php old('name'); ?>">
  23.                 </li>
  24.  
  25.                 <li>
  26.                     <label for="email">Your Email</label>
  27.                     <input type="text" name="email" value="<?php old('email'); ?>">
  28.                 </li>
  29.  
  30.                 <li>
  31.                     <input type="submit" name="submit" value="Sign Up">
  32.                 </li>
  33.        
  34.             </ul>
  35.         </form>
  36.     </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement