| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>The Subline</title>
- <style>
- form{
- display:flex;
- flex-direction: column;
- }
- form > *{
- margin: 10px;
- }
- </style>
- </head>
- <body>
- <form action="/admin/create" method="post" enctype="multipart/form-data">
- <label>Password
- <input name="password" type="password" required>
- </label>
- <label>Merchant Id
- <input name="id" type="text" required>
- </label>
- <label>Ingredients
- <input name="ingredients" type="file">
- </label>
- <label>Recipes
- <input name="recipes" type="file">
- </label>
- <label>Orders
- <input name="orders" type="file">
- </label>
- <label>Transactions
- <input name="transactions" type="file">
- </label>
- <input type="submit" value="Submit">
- </form>
- </body>
- </html>
|