newTest.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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>Password
  19. <input name="password" type="password" required>
  20. </label>
  21. <label>Merchant Id
  22. <input name="id" type="text" required>
  23. </label>
  24. <label>Ingredients
  25. <input name="ingredients" type="file">
  26. </label>
  27. <label>Recipes
  28. <input name="recipes" type="file">
  29. </label>
  30. <label>Orders
  31. <input name="orders" type="file">
  32. </label>
  33. <label>Transactions
  34. <input name="transactions" type="file">
  35. </label>
  36. <input type="submit" value="Submit">
  37. </form>
  38. </body>
  39. </html>