{% extends 'base.html' %} {% block title %}Home - Django Boilerplate{% endblock %} {% block content %}

Welcome to Django Boilerplate

A production-ready Django starter template with authentication, social login, role-based permissions, and Docker support.


{% if user.is_authenticated %}

Hello, {{ user.full_name|default:user.email }}!

Go to Dashboard {% else %}

Get started by creating an account or logging in.

Sign Up Login {% endif %}
🔐 Authentication

Complete authentication system with email verification, password reset, and social login (Google & Facebook).

👥 Role-Based Access

Built-in user group system with admin, staff, and user roles for granular permission control.

🐳 Docker Ready

Fully containerized with Docker Compose, PostgreSQL database, and production-ready configuration.

{% endblock %}