summaryrefslogtreecommitdiff
path: root/data/templates/add.html
blob: 0282ef0d25c14b48bc9ffa0fe2ed834ffdb55442 (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
<!DOCTYPE html>

<html>

	{{ template "head.html" }}

	<body>

		<header>
			<nav>
				<a href="/index.html">HOME</a>
			</nav>
			<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>