Login failed
It was not possible to log you in due to:
{{ login_error }}
There are several possible ways for logins to fail with the current Django MagicLink settings:
- The URL you are trying to use is malformed
- The magic link you tried to use has expired
- You have already used this magic link to login before
{% if ONE_TOKEN_PER_USER %}
- You have requested another magic causing this magic link to become invalid
{% endif %}
{% if REQUIRE_SAME_BROWSER %}
- You are using a different browser to when you requested the login link
{% endif %}
{% if REQUIRE_SAME_IP %}
- You are trying to login from a different location or machine that you requested the login link from
{% endif %}
{% if not ALLOW_SUPERUSER_LOGIN or not ALLOW_STAFF_LOGIN %}
- You are a superuser or staff user
{% endif %}
If you are seeing this you have not yet overridden the 'MAGICLINK_LOGIN_FAILED_TEMPLATE_NAME' setting yet.
Please see the README on Github for more details on setting up django-magiclink correctly