blob: b5c967246a8f7772cc8d0c711f73cef6085f8110 (
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
|
<!DOCTYPE html>
<html>
<head>
<title>Recipes</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../../../static/style.css" type="text/css">
</head>
<body>
<header>
<h1>Edit a recipe</h1>
</header>
<main>
<p>ID: {{.Id}}</p>
<form action="/add_recipes" method="post" id="recipe_form">
<input placeholder="Title" type="text" id="custom_title" name="title" value="{{.Title}}"><br>
<input placeholder="Link (optional)" type="text" id="custom_link" name="url" value="{{.UpstreamUrl}}"><br>
<label for="image">New image (optional):</label>
<input id="image" type="file"><br>
<pre form="recipe_form" name="description_markdown" contenteditable="true"><code>{{.DescriptionMarkdown}}</code></pre>
<button type="submit">save</button>
</form>
<a href="/recipe?id={{.Id}}"><button>cancel</button></a>
</main>
</body>
</html>
|