diff options
author | xengineering <me@xengineering.eu> | 2023-02-12 19:46:48 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-12 19:46:48 +0100 |
commit | ba327ee030a3b8abdbf9f5d10987060648dbb10e (patch) | |
tree | e1a9e046e2293bfa407535983b165fd620c06d42 /data/templates/add.html | |
parent | ddb4a94dd72c250bd8c2090378ef9a4fff404787 (diff) | |
download | ceres-ba327ee030a3b8abdbf9f5d10987060648dbb10e.tar ceres-ba327ee030a3b8abdbf9f5d10987060648dbb10e.tar.zst ceres-ba327ee030a3b8abdbf9f5d10987060648dbb10e.zip |
Make add.html a template
This allows to use partial HTML files via Go's templating features.
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> |