summaryrefslogtreecommitdiff
path: root/templates/create_blog.html
diff options
context:
space:
mode:
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>
+