{% extends "base.html" %} {% block content %}
You have successfully logged in with two-factor authentication.
{% if user.is_2fa_enabled %} 2FA Enabled {% else %} 2FA Setup Required {% endif %}
Security Settings{% if user.last_login %} {{ user.last_login.strftime('%Y-%m-%d %H:%M:%S') }} {% else %} First login - Welcome! {% endif %}
Keep track of your account activity| Username: | {{ user.username }} |
| Email: | {{ user.email }} |
| Account Created: | {{ user.created_at.strftime('%Y-%m-%d') if user.created_at else 'N/A' }} |
| 2FA Status: | {% if user.is_2fa_enabled %} Enabled {% else %} Setup Required {% endif %} |