summaryrefslogtreecommitdiff
path: root/data/templates/add.html
blob: 39929ddb25e1802b551bd58c9fda74305fa28f3b (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>
			<h1>Add a recipe</h1>
		</header>

		<main>
			<form action="/add_recipes" method="post">
				<input placeholder="Title" type="text" id="custom_title" name="title"><br>
				<input placeholder="Link (optional)" type="text" id="custom_link" name="url"><br>
				<button type="submit">add</button>
			</form>

			{{ template "footer.html" }}

		</main>

	</body>

</html>