summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-08 22:15:06 +0200
committerxengineering <me@xengineering.eu>2023-04-08 22:15:06 +0200
commitfa2ad475b4e0c890b662b61886599373f552bf31 (patch)
tree2c55260845c2d1141cdc7120211ee0bf84847757
parentbb8be468855d520bb2bf474657fbcfb3387bcc0a (diff)
downloadceres-fa2ad475b4e0c890b662b61886599373f552bf31.tar
ceres-fa2ad475b4e0c890b662b61886599373f552bf31.tar.zst
ceres-fa2ad475b4e0c890b662b61886599373f552bf31.zip
Fix layout on delete confirmation page
-rw-r--r--data/templates/recipe_confirm_deletion.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/recipe_confirm_deletion.html b/data/templates/recipe_confirm_deletion.html
index f19901c..d247b13 100644
--- a/data/templates/recipe_confirm_deletion.html
+++ b/data/templates/recipe_confirm_deletion.html
@@ -17,9 +17,9 @@
<p>Recipe ID: {{.Id}}</p>
<p>Do you really want to delete this recipe?</p>
<form action="/recipe/confirm-deletion?id={{.Id}}" method="POST">
+ <a href="/recipe/edit?id={{.Id}}"><button type="button">cancel</button></a>
<button style="background-color:red" type="submit">delete</button>
</form>
- <a href="/recipe/edit?id={{.Id}}"><button>cancel</button></a>
{{ template "footer.html" }}
</main>
</body>