summaryrefslogtreecommitdiff
path: root/data/templates/recipe_edit.html
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/recipe_edit.html')
-rw-r--r--data/templates/recipe_edit.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html
deleted file mode 100644
index 6ef41f8..0000000
--- a/data/templates/recipe_edit.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-
- {{ template "head.html" }}
-
- <body>
- <header>
- <nav>
- <a href="/index.html">HOME</a>
- <a href="/add_recipes">add recipe</a>
- </nav>
- <h1>{{.Title}}</h1>
- </header>
-
- <main>
- <form action="/recipe/edit" method="POST">
- <input type="hidden" name="id" value="{{.Id}}" />
- <textarea style="resize:none;font-family:monospace, monospace;font-size: 1rem;" rows="18" wrap="soft" name="text">{{.Text}}</textarea>
- <button type="submit">save</button>
- <a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a>
- </form>
- {{ template "footer.html" }}
- </main>
- </body>
-</html>