Django-Verify-Email icon indicating copy to clipboard operation
Django-Verify-Email copied to clipboard

A two-step verification for new accounts by verifying email.

Results 29 Django-Verify-Email issues
Sort by recently updated
recently updated
newest added

Hello when I signup with a new user - The new user receives a verify email - but when the [verify] link gets clicked it's response is a verification failed...

added this case because some django backends are not supporting native forms and could be used only as REST API's. My change does not change anything in the current functionality...

Email verification send an invalid link all the time Invalid Link This link is invalid or been used already, we cannot verify using this link.

Thank you for your work on this package! Is this project still actively maintained? Is there a chance to add maintainers to help ease the load? I would very much...

I could really use the ability to send invites without a form.

Instead of a direct setting, the email subject can now be set using a template. This is heavily inspired and pretty much copied from the way Django is rendering the...

The signature of send_verification_link was changed in a960b57be3cf9ef519e49f48b38f21545816f72f. However, the corresponding invocation of this method in the documented public API was left unchanged, which introduced a bug reported in https://github.com/foo290/Django-Verify-Email/issues/68.

Add a helper script to be able to run Django management commands without a surrounding Django project.

In order to avoid a database migration, we set default_auto_field to 'django.db.models.BigAutoField' for the VerifyEmail app. This is required, since Django defaults to django.db.models.AutoField since Django 3.2 (https://docs.djangoproject.com/en/3.2/ref/settings/#std-setting-DEFAULT_AUTO_FIELD). By setting...