blob: 05a932c74bbfd00f3afe8b2c74bc3dcf8403af49 (
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
|
<!DOCTYPE html>
<html>
{{ template "head.html" }}
<body>
<header>
<nav>
<a href="/index.html">HOME</a>
<a href="/add_recipes">add recipe</a>
</nav>
<h1>Edit a recipe</h1>
</header>
<main>
<p>Recipe ID: {{.Id}}</p>
<input placeholder="Title" type="text" name="title" value="{{.Title}}"><br>
<input placeholder="Link (optional)" type="text" name="url" value="{{.UpstreamUrl}}"><br>
<pre contenteditable="true"><code>{{.DescriptionMarkdown}}</code></pre>
<button>save</button> <!-- TODO add functionality -->
<a href="/recipe?id={{.Id}}"><button>cancel</button></a>
<button style="background-color: red">delete</button> <!-- TODO add functionality -->
{{ template "footer.html" }}
</main>
</body>
</html>
|