summaryrefslogtreecommitdiff
path: root/data/templates/recipe_edit.html
blob: 6ef41f8055e5f009723d508c855736f0d166f1c6 (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
<!DOCTYPE html>

<html>

	{{ template "head.html" }}

	<body>
		<header>
			<nav>
				<a href="/index.html">HOME</a>
				<a href="/add_recipes">add recipe</a>
			</nav>
			<h1>{{.Title}}</h1>
		</header>

		<main>
			<form action="/recipe/edit" method="POST">
				<input type="hidden" name="id" value="{{.Id}}" />
				<textarea style="resize:none;font-family:monospace, monospace;font-size: 1rem;" rows="18" wrap="soft" name="text">{{.Text}}</textarea>
				<button type="submit">save</button>
				<a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a>
			</form>
			{{ template "footer.html" }}
		</main>
	</body>
</html>