newTest.html 917 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>The Subline</title>
  6. <style>
  7. form{
  8. display:flex;
  9. flex-direction: column;
  10. }
  11. form > *{
  12. margin: 10px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <form action="/admin/create" method="post" enctype="multipart/form-data">
  18. <label>Ingredients
  19. <input name="ingredients" type="file">
  20. </label>
  21. <label>Recipes
  22. <input name="recipes" type="file">
  23. </label>
  24. <label>Orders
  25. <input name="orders" type="file">
  26. </label>
  27. <label>Transactions
  28. <input name="transactions" type="file">
  29. </label>
  30. <input type="submit" value="Submit">
  31. </form>
  32. </body>
  33. </html>