Two Factor Authentication with Django - Admin Demo

preview_player
Показать описание
2 factor authentication is a great step in increasing account security on your site. With django it can be fairly easy to setup once you know how to do it. To start off in this video we will take a look at the django-otp package and get a bit of a quick demo before we dive into a full implementation.
Рекомендации по теме
Комментарии
Автор

really interesting ! Have you published the next videos you are talking of in this one ?

dariogambi
Автор

Can you please make a video on how can a User do the same through a template. I mean not an Admin. A login form with Otp

Mirudox
Автор

I had many application models. After logging in this way, only the user model was loaded. No application models are loaded. Group permissions are ok. What is the problem?

orangen
Автор

If any one is stuck trying to make OTP the main way for the django admin, simply remove everything he's done and then put "from django_otp.admin import OTPAdminSite" + "admin.site.__class__ = OTPAdminSite

scottbenson
Автор

I get 'User' object has no attribute 'is_verified'
after entering my OTP from Google authenticator. Do you have any suggestions?

LunchPuppy