Added password change form

This commit is contained in:
Yusur 2019-10-24 18:27:53 +02:00
parent a9006bf1bc
commit 5536e764e7
8 changed files with 111 additions and 10 deletions

10
app/templates/feed.html Normal file
View file

@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block body %}
<h2>Your Timeline</h2>
<ul>
{% for message in message_list %}
<li id="{{ message.id }}">{% include "includes/message.html" %}</li>
{% endfor %}
</ul>
{% include "includes/pagination.html" %}
{% endblock %}