{% extends "django_deepface/base.html" %} {% block title %}DeepFace Login Demo{% endblock %} {% block content %}

DeepFace Login Demo

Welcome to the DeepFace Authentication Demo

This application demonstrates the integration of facial recognition technology for user authentication using the DeepFace library.

Key Features:
  • ✨ Face-based login authentication
  • 📸 Multiple face image support for improved accuracy
  • 🔒 Secure face embedding storage using pgvector
  • 📱 Webcam capture support for easy face registration
How It Works:

The system uses DeepFace's facial recognition capabilities to create unique face embeddings for each user. These embeddings are stored securely in a PostgreSQL database using pgvector for efficient similarity searches. When logging in, the system compares your face against stored embeddings to authenticate your identity.

{% if user.is_authenticated %} Go to Profile {% else %} Try Face Login {% endif %}
{% endblock %}