Skip to content

Instantly share code, notes, and snippets.

View TanimSk's full-sized avatar
🙃
Thinking

Tanim Sk TanimSk

🙃
Thinking
View GitHub Profile
@iMerica
iMerica / urls.py
Last active July 27, 2023 17:20
Email verification in Django Rest Framework, Django All-Auth, Django Rest-Auth. Suitable for Single Page Applications
urlpatterns = [
url(r'^rest-auth/registration/account-confirm-email/(?P<key>[-:\w]+)/$', ConfirmEmailView.as_view(), name='account_confirm_email'),
]