blob: b4d6da5f93f20f85c9abaa4809240893f6652a43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{{define "recipe-edit"}}
<html>
{{ template "head" }}
<header>
<nav>
<a href="/">HOME</a>
</nav>
<h1>Recipe editor</h1>
</header>
<body>
<main>
<form action="/recipes/{{.Id}}" method="POST">
<p>
<label>Title</label>
<input type="text" name="title" value="{{.Title}}">
</p>
<p>
<label>Portions</label>
<input type="number" name="portions" value="{{.Portions}}">
</p>
<p>
<label>URL</label>
<input type="text" name="url" value="{{.URL}}">
</p>
<p>
<label>Notes</label>
<input type="text" name="notes" value="{{.Notes}}">
</p>
<input type="submit" value="save">
<a href="/recipes/{{.Id}}"><button type="button">cancel</button></a>
</form>
</main>
{{ template "footer" }}
</body>
</html>
{{end}}
|