<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  <meta http-equiv="content-type" content="text/html">
  <title>UploadyThing V0.01</title>
  <style type="text/css">
    body, table tr td {
      font-family: verdana, arial, tahoma, san-serif;
      font-size: 1.5em;
      background-color: #88C7F0;
    }
    .greyInput {
      background-color: #CCC;
    }
    .greyInput:hover {
      background-color: #EEE;
    }
    .greyInput:focus {
      background-color: #EEE;
    }
  </style>
  </head>
  <body>
  <form enctype="multipart/form-data" action="creator.php" method="POST">
  <div style="text-align: center;">
  <span style="font-weight: bold; font-size: 1.7em;">Upload A File</span>
  <table>
    <tr>
      <td>File</td>
      <td><input name="uploadedfile" type="file" class="greyInput" /></td>
    </tr>
    <tr>
      <td>Title</td>
      <td><input type="text" name="title" class="greyInput" /></td>
    </tr>
    <tr>
      <td>Other<br/>Information</td>
      <td><textarea name="other" class="greyInput"></textarea></td>
    </tr>
    <tr>
      <td colspan="2"><input type="submit" value="Upload" /></td>
    </tr>
  </table>
  </div>
  </form>
  </body>
</html>