diff options
Diffstat (limited to 'data/templates/add.html')
-rw-r--r-- | data/templates/add.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/data/templates/add.html b/data/templates/add.html new file mode 100644 index 0000000..39929dd --- /dev/null +++ b/data/templates/add.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> + +<html> + + {{ template "head.html" }} + + <body> + + <header> + <h1>Add a recipe</h1> + </header> + + <main> + <form action="/add_recipes" method="post"> + <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> + + {{ template "footer.html" }} + + </main> + + </body> + +</html> |