summaryrefslogtreecommitdiff
path: root/templates/create_blog.html
diff options
context:
space:
mode:
authorroerick <roerick@wyo.town>2025-10-17 15:32:19 -0600
committerroerick <roerick@wyo.town>2025-10-17 15:32:19 -0600
commitce61d3db96e0539c8df1886ac635e7e85dbde31f (patch)
tree8af7c0eda03b91273ebffbde5799e4436b04cac6 /templates/create_blog.html
initial commit, models not working
Diffstat (limited to 'templates/create_blog.html')
-rw-r--r--templates/create_blog.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/create_blog.html b/templates/create_blog.html
new file mode 100644
index 0000000..6912216
--- /dev/null
+++ b/templates/create_blog.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Create Blog</title>
+</head>
+<body>
+ <h1>Create Blog</h1>
+ <form method="POST" action="/blogs">
+ <label>Title:</label><br>
+ <input type="text" name="title"><br>
+ <label>Content:</label><br>
+ <textarea name="content"></textarea><br>
+ <input type="submit" value="Create">
+ </form>
+</body>
+</html>
+