{% extends "base.html" %} {% load i18n %} {% block head_title %}My App — Home{% endblock %} {% block content %}
{% if request.user.is_authenticated %}
Signed in

Welcome back!

You're signed in as {{ request.user.email }}.

{% else %}
Starter Template

Welcome to My App

A solid Django 5.2 starter template with passkey authentication, social login, and a clean, extensible architecture.

{% endif %}

Built for the modern web

Everything you need to launch a production-ready Django application.

Secure Login

Email-based authentication powered by django-allauth. Email verification, password reset, and account management included out of the box.

Passkey Support

WebAuthn / FIDO2 passkey login via allauth's MFA module. Users can sign in with biometrics or a hardware key — no password needed.

Social Sign-In

Google and GitHub OAuth preconfigured. Just add your API credentials to .env and social login is live.

Tech Stack

Django 5.2 LTS django-allauth 65 FIDO2 / WebAuthn Tailwind CSS WhiteNoise SQLite → swap-ready
{% endblock %}