{% extends "base.html" %} {% block title %}Your Bujo{% endblock title%} {% block header %}Your Bullet Journal{% endblock header %} {% block content %}
{% if request.method == "GET" %}
{% csrf_token %} {{ form }}
{% endif %}
{% if request.method == "POST" %}

Hello, {{ UserName }}! Today is going to be a great day!

{% endif %} {% endblock content %}