There was an error while loading. Please reload this page.
1 parent d9a6a6e commit 9ac9261Copy full SHA for 9ac9261
website/database.db
0 Bytes
website/templates/create_post.html
@@ -1,2 +1,17 @@
1
-{% extends "base.html" %} {% block title %} Home {% endblock %} {% block content
2
-%} {% endblock %}
+{% extends "base.html" %} {% block title %} Home {% endblock %}
+{% block content%}
3
+<h1 align="center">Make a Post</h1>
4
+
5
+<form method="POST">
6
+ <textarea name="text" id="text" class="form-control"></textarea>
7
+ <br />
8
+ <div align="center">
9
+ <button type="submit" class="btn btn-lg btn-primary">Post</button>
10
+ </div>
11
+</form>
12
+<br />
13
+<div align="center">
14
+ <a href="/home"><button type="button" class="btn btn-lg btn-secondary">Back</button></a>
15
+</div>
16
17
+{% endblock %}
0 commit comments