summaryrefslogtreecommitdiff
path: root/views/pages/comment_form.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'views/pages/comment_form.ejs')
-rw-r--r--views/pages/comment_form.ejs21
1 files changed, 21 insertions, 0 deletions
diff --git a/views/pages/comment_form.ejs b/views/pages/comment_form.ejs
new file mode 100644
index 0000000..97a8402
--- /dev/null
+++ b/views/pages/comment_form.ejs
@@ -0,0 +1,21 @@
+<% include ../partials/header %>
+
+<div id="content">
+
+<table id="comment_form">
+ <tr>
+ <td>
+ <form>
+ <textarea name="comment" placeholder="Enter your comment"></textarea><br>
+ <div class="inputs">
+ <input type="submit" value="POST" />
+ </div>
+ <div class="errors"></div>
+ </form>
+ </td>
+ </tr>
+</table>
+
+</div>
+
+<% include ../partials/footer %>