| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Lee Morgan</title>
- <style>
- form{
- display: flex;
- flex-direction: column;
- }
- </style>
- </head>
- <body>
- <form action="/currency" method="post" enctype="multipart/form-data">
- <label>Uploader
- <input name="uploader" type="text" required>
- </label>
- <label>Password
- <input name="password" type="password" required>
- </label>
- <label>Location
- <input name="location" type="text" required>
- </label>
- <label>Paper
- <input name="type" type="radio" value="paper">
- </label>
- <label>Coin
- <input name="type" type="radio" value="coin">
- </label>
- <label>Year
- <input name="year" type="number" required>
- </label>
- <label>Comments
- <textarea name="comment"></textarea>
- </label>
- <label>Front Image
- <input name="frontImage" type="file" required>
- </label>
- <label>Back Image
- <input name="backImage" type="file" required>
- </label>
- <input type="submit" value="Submit">
- </form>
- </body>
- </html>
|