<!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>