diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/html/recipe-confirm-deletion.html | 2 | ||||
-rw-r--r-- | view/html/recipe-edit.html | 2 | ||||
-rw-r--r-- | view/html/recipe.html | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/view/html/recipe-confirm-deletion.html b/view/html/recipe-confirm-deletion.html index 74d6ede..7ad08a3 100644 --- a/view/html/recipe-confirm-deletion.html +++ b/view/html/recipe-confirm-deletion.html @@ -9,7 +9,7 @@ <body> <main> <p>Do you really want to delete this recipe?</p> - <a href="/recipe/{{.Id}}"><button type="button">cancel</button></a> + <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button> <button onclick="del('/recipe/{{.Id}}')" style="background-color:red">delete</button> </main> {{ template "footer" }} diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html index 7dda7ff..aeb8e59 100644 --- a/view/html/recipe-edit.html +++ b/view/html/recipe-edit.html @@ -32,7 +32,7 @@ </p> <button type="submit">save</button> - <a href="/recipe/{{.Id}}"><button type="button">cancel</button></a> + <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button> </form> </main> {{ template "footer" }} diff --git a/view/html/recipe.html b/view/html/recipe.html index 59ed575..c2d9ddc 100644 --- a/view/html/recipe.html +++ b/view/html/recipe.html @@ -9,8 +9,8 @@ <body> <main> <p> - <a class="button" href="/recipe/{{.Id}}?view=recipe-edit">edit</a> - <a class="button" style="background-color:red" href="/recipe/{{.Id}}?view=recipe-confirm-deletion">delete</a> + <button onclick="window.location.href='/recipe/{{.Id}}?view=recipe-edit';">edit</button> + <button style="background-color:red" onclick="window.location.href='/recipe/{{.Id}}?view=recipe-confirm-deletion';">delete</button> </p>{{ if ne .Portions "" }} <p><i>Portions:</i> {{.Portions}}</p>{{end}}{{ if ne .Url "" }} <p><i>Original recipe:</i> <a href="{{.Url}}">link</a></p>{{end}}{{ if ne .Notes "" }} |