new.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Lee Morgan</title>
  6. <style>
  7. form{
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <form action="/currency" method="post" enctype="multipart/form-data">
  15. <label>Uploader
  16. <input name="uploader" type="text" required>
  17. </label>
  18. <label>Password
  19. <input name="password" type="password" required>
  20. </label>
  21. <label>Location
  22. <input name="location" type="text" required>
  23. </label>
  24. <label>Paper
  25. <input name="type" type="radio" value="paper">
  26. </label>
  27. <label>Coin
  28. <input name="type" type="radio" value="coin">
  29. </label>
  30. <label>Year
  31. <input name="year" type="number" required>
  32. </label>
  33. <label>Comments
  34. <textarea name="comment"></textarea>
  35. </label>
  36. <label>Front Image
  37. <input name="frontImage" type="file" required>
  38. </label>
  39. <label>Back Image
  40. <input name="backImage" type="file" required>
  41. </label>
  42. <input type="submit" value="Submit">
  43. </form>
  44. </body>
  45. </html>