diff options
author | xengineering <me@xengineering.eu> | 2023-01-14 18:07:47 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-08 20:44:02 +0100 |
commit | 9005de11ef8b7cf32cc8503e8b5f134eca47b4fb (patch) | |
tree | c6a445bd55790c9677d9217de72b8d968c33ce2d /data/templates/recipe_edit.html | |
parent | 1f8b5c2bbe20c4c6b7b334b00ae5e6622dcd51f7 (diff) | |
download | ceres-9005de11ef8b7cf32cc8503e8b5f134eca47b4fb.tar ceres-9005de11ef8b7cf32cc8503e8b5f134eca47b4fb.tar.zst ceres-9005de11ef8b7cf32cc8503e8b5f134eca47b4fb.zip |
Add new recipe edit page
Recipes should be completely editable and removable. Thus this edit page
was added.
Diffstat (limited to 'data/templates/recipe_edit.html')
-rw-r--r-- | data/templates/recipe_edit.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html new file mode 100644 index 0000000..b5c9672 --- /dev/null +++ b/data/templates/recipe_edit.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> + +<html> + + <head> + + <title>Recipes</title> + + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="../../../static/style.css" type="text/css"> + + </head> + + <body> + <header> + <h1>Edit a recipe</h1> + </header> + + <main> + <p>ID: {{.Id}}</p> + <form action="/add_recipes" method="post" id="recipe_form"> + <input placeholder="Title" type="text" id="custom_title" name="title" value="{{.Title}}"><br> + <input placeholder="Link (optional)" type="text" id="custom_link" name="url" value="{{.UpstreamUrl}}"><br> + <label for="image">New image (optional):</label> + <input id="image" type="file"><br> + <pre form="recipe_form" name="description_markdown" contenteditable="true"><code>{{.DescriptionMarkdown}}</code></pre> + <button type="submit">save</button> + </form> + <a href="/recipe?id={{.Id}}"><button>cancel</button></a> + </main> + </body> +</html> |