{% extends "users/base.html" %} {% block title %} Home Page {% endblock title%} {% block content %}

Welcome, {{user.first_name.title|default:'Guest'}}

This is user registration and login system build with django which is a Python-based free and open-source web framework that follows the model–template–views architectural pattern.


{% if user.is_authenticated %} Logout {% else %} Sign in {% endif %}

{% endblock content %}