summaryrefslogtreecommitdiff
path: root/view/html/recipe-edit.html
blob: d7d9b4548291eb83323001374de9d7a9e8ac64db (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
41
42
43
44
{{define "recipe-edit"}}
<!DOCTYPE html>
<html>
	{{ template "head" }}
	<header>
		<nav>
			<a href="/recipes">HOME</a>
		</nav>
		<h1>Recipe editor</h1>
	</header>
	<body>
		<main>
			<form action="/recipe/{{.Id}}">
				<input type="hidden" name="id" value="{{.Id}}">

				<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>

				<button type="submit">save</button>
				<a href="/recipe/{{.Id}}"><button type="button">cancel</button></a>
			</form>
		</main>
		{{ template "footer" }}
		<script src="/static/view/static/ceres.js"></script>
	</body>
</html>
{{end}}