home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 88 / PIWD88.iso / mac / contents / developer / tutorial_files / Pages94-95 / editalbum.asp next >
Text File  |  2003-11-03  |  783b  |  27 lines

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <html>
  5. <head>
  6. <title>Photo Album Administration</title>
  7. <link rel="stylesheet" type="text/css" href="global.css" />
  8. </head>
  9.  
  10. <body>
  11. <div id="content">
  12. <h1>Your photo album</h1>
  13. <p>To upload a new photograph to your album, complete the form below.</p>
  14. <form method="post" enctype="multipart/form-data" action="editalbum2.asp"> 
  15. <p>Photograph Title:<br />
  16. <input type="text" name="imageTitle" /></p>
  17. <p>Description:<br />
  18. <textarea name="imageDesc" cols="40" rows="4"></textarea></p>
  19. <p>Photograph:<br />
  20. <input type="file" name="file1"></p>
  21. <p><input type="submit" value="Upload!" class="submit"> </p>
  22. </form>
  23. </div>
  24. </body>
  25. </html>
  26.  
  27.