summaryrefslogtreecommitdiff
path: root/data/static/add.html
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-11-05 21:25:31 +0100
committerxengineering <me@xengineering.eu>2022-11-07 21:17:44 +0100
commit1d6b45bebea66391a2a535a3bb328a5732aaa75d (patch)
tree12faa62d8d8574ad8c94f4a7c9ff206c34456430 /data/static/add.html
downloadceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.tar
ceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.tar.zst
ceres-1d6b45bebea66391a2a535a3bb328a5732aaa75d.zip
Add existing work
Diffstat (limited to 'data/static/add.html')
-rw-r--r--data/static/add.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/data/static/add.html b/data/static/add.html
new file mode 100644
index 0000000..ed02811
--- /dev/null
+++ b/data/static/add.html
@@ -0,0 +1,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>