1
0
forked from finn/site

login and register

This commit is contained in:
2024-08-01 11:10:49 -07:00
parent 3162b662b5
commit 9db540fc1c
10 changed files with 129 additions and 11 deletions

View File

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block content %}
<h1>Helloo, {{ user.username }}!</h1>
<h1>Hello, {{ current_user.username }}!</h1>
{% for post in posts %}
<div><p>{{ post.author.username }} says: <b>{{ post.body }}</b></p></div>
{% endfor %}