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