summaryrefslogtreecommitdiff
path: root/data/static/add.html
blob: ed02811533da0a368fb362166c0ba10072754f7e (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/libweb.css" type="text/css">

	</head>
	
	<body>

		<main>

			<h1>Add a recipe</h1>

			<form action="/add_recipes" method="post">
				<label for="custom_title">Title:</label><br>
				<input style="border: 1px solid;" type="text" id="custom_title" name="title"><br>
				<label for="custom_link">Link (optional):</label><br>
				<input style="border: 1px solid;" type="text" id="custom_link" name="url"><br>
				<button class="card-last-item" type="submit">add</button>
			</form>

		</main>

	</body>

</html>