| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!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>
- <input type="submit" value="Submit">
- </form>
- </body>
- </html>
|