+
Change Password
+
+ {% with messages = get_flashed_messages(with_categories=true) %}
+ {% if messages %}
+
+ {% for category, message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+
+ {% endif %}
+ {% endwith %}
+
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/forum/templates/chat.html b/forum/templates/chat.html
new file mode 100644
index 0000000..be358b0
--- /dev/null
+++ b/forum/templates/chat.html
@@ -0,0 +1,43 @@
+{% extends 'layout.html' %}
+{% block body %}
+{{ path|safe }}
+
+
+
-
- {% if errors %}
-
- {% for error in errors %}
-
- {{ error }}
-
-
- {% endfor %}
-
+
+
+
+
+
+
+
+
+
+
+
+
+
{% include 'header.html' %}
+
+
+
+
+ {% if errors %}
+
+ {% for error in errors %}
+
+ {{ error }}
+
+
+ {% endfor %}
+
+
{% endif %}
-
- {% block body %}{% endblock %}
-
+
+
+
+
{% block body %}{% endblock %}
+
+
+
+
-
+
+
+
diff --git a/forum/templates/room.html b/forum/templates/room.html
new file mode 100644
index 0000000..4317f6a
--- /dev/null
+++ b/forum/templates/room.html
@@ -0,0 +1,52 @@
+{% extends 'layout.html' %}
+{% block body %}
+
+You have no posts at this time.
+ {% endif %}
+ You have no comments at this time.
+ {% endif %}
+
+ You have no replies at this time.
+ {% endif %}
+
+ {% else %}
+
+{% if current_user.is_authenticated %}
{{post.title}}
{{ post.user.username }}
@@ -14,64 +15,129 @@
- {{post.content}}
+ {{post.content | safe }}
+ {% else %}
+
Login or register to view this post.
+ {% endif %}
+
-
-
- {% endfor %} +{% else %} + Login or register to view comments + {% endif %}