diff options
Diffstat (limited to 'data/static/add.html')
-rw-r--r-- | data/static/add.html | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/data/static/add.html b/data/static/add.html index ed02811..15d9f0e 100644 --- a/data/static/add.html +++ b/data/static/add.html @@ -8,24 +8,27 @@ <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="stylesheet" href="./static/libweb.css" type="text/css"> + <link rel="stylesheet" href="./static/style.css" type="text/css"> </head> <body> - <main> - + <header> <h1>Add a recipe</h1> + </header> + <main> <form action="/add_recipes" method="post"> - <label for="custom_title">Title:</label><br> - <input style="border: 1px solid;" type="text" id="custom_title" name="title"><br> - <label for="custom_link">Link (optional):</label><br> - <input style="border: 1px solid;" type="text" id="custom_link" name="url"><br> - <button class="card-last-item" type="submit">add</button> + <input placeholder="Title" type="text" id="custom_title" name="title"><br> + <input placeholder="Link (optional)" type="text" id="custom_link" name="url"><br> + <button type="submit">add</button> </form> + <footer> + <hr> + <p>The <a href="https://xengineering.eu/git/ceres">Ceres</a> recipe server is licensed under <a href="https://www.gnu.org/licenses/agpl-3.0.en.html">AGPL v3</a> and developed with <a href="https://simplecss.org/">simple.css</a>.</p> + </footer> </main> </body> |