diff options
-rw-r--r-- | view/html/recipe-edit.html | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html index bad8d60..9980e75 100644 --- a/view/html/recipe-edit.html +++ b/view/html/recipe-edit.html @@ -11,21 +11,10 @@ <form action="/recipe{{if ne .Id ""}}/{{.Id}}{{end}}"> <input type="hidden" name="id" value="{{.Id}}"> - <p> - <input type="text" name="title" value="{{.Title}}" placeholder="Title" required> - </p> - - <p> - <input type="number" name="portions" value="{{.Portions}}" placeholder="Portions"> - </p> - - <p> - <input type="text" name="url" value="{{.Url}}" placeholder="URL"> - </p> - - <p> - <textarea name="notes" rows="4" cols="50" placeholder="Notes">{{.Notes}}</textarea> - </p> + <p><input type="text" name="title" value="{{.Title}}" placeholder="Title" required></p> + <p><input type="number" name="portions" value="{{.Portions}}" placeholder="Portions"></p> + <p><input type="text" name="url" value="{{.Url}}" placeholder="URL"></p> + <p><textarea name="notes" rows="4" cols="50" placeholder="Notes">{{.Notes}}</textarea></p> <div id="steps">{{range .Steps}} <section> @@ -35,8 +24,9 @@ </div> <button type="button" onclick="addNewStep();">add step</button> - <button type="submit">save</button> - <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button> + <button type="submit">save</button>{{if eq .Id ""}} + <button onclick="window.location.href='/recipes';">cancel</button>{{else}} + <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button>{{end}} </form> </main> {{ template "footer" }} |