Very good tutorial. Clear and complete. Simple solution. Thank you.
@trosgate3 жыл бұрын
I wonder how you manage to grasp all these. You are a wonderful teacher and i am glad t be your close follower, thumbs up
@veryacademy3 жыл бұрын
Thanks Trosgate. After time, everything looks the same, it just sinks in. It always feels overwhelming at the start, Python, Django, HTML, CSS, JS, more frameworks, front-end, back-end, deployment, Docker lol Where do you even start.
@JoseZambrana-o3l3 ай бұрын
Quick question, which library we have to use now for 2mfa? do we have to use the same o there is another one better currently?
@mohamedjasim39163 жыл бұрын
Thank you a lot. but what about django-rest-framework API with JWT, what do you suggest.
@veryacademy3 жыл бұрын
You would be hard pushed to find a production ready answer for this question online. Security is more than just JWT for example. I would recommend looking at security in a broader context first. A bad example www.loginradius.com/blog/start-with-identity/login-security/
@ngotuanhien3 жыл бұрын
Thank you for your introduction to this Django Two Factor Authentication! It is a nice feature but your tutorial was messing up the package templates with your template. At first, removing the content_wrapper block inside two_factor/_base.html was unnecessary so you had to rename numbers of blocks after that. You should just use "{% extends "../base.html" %}" and everything would be fine. At second, for center alignment for the login block, the ... for wrapping all block content is enough.
@aKoRDioN Жыл бұрын
Hello, thank you very much for your videos, I watched almost most of them and they were very useful. It's one of the few resources I recommend. I want to ask, can we use this system to access any page, not just to login?
@CoentraDZ3 жыл бұрын
You are wonderful, keep going 💪
@veryacademy3 жыл бұрын
Thank you so much!!
@yeboahdominic18962 жыл бұрын
Nice, how can we integrate it with django rest framework
@ByronJuarez2 жыл бұрын
thank you for your help, the tutorial is great
@veryacademy2 жыл бұрын
Glad it was helpful!
@ammarjamil24673 жыл бұрын
Hey Bro your video is very helpful kindly make one video on push notification in django using firebase
@veryacademy3 жыл бұрын
Django Firebase - not too far away! Noted though and is on my todo list.
@lantossar89463 жыл бұрын
How can i implement this in a way that the user can register and login with only phone number and generated token(sms) Thanks for the video!
@veryacademy3 жыл бұрын
Have a look at the documentation - I didn't show using mobile etc because it involves other 3rd part services.
@SonySupporter3 жыл бұрын
Amazing as always! Can you make a video about simple-jwt and 2fa implementation?
@BobBeaucage3 жыл бұрын
Thanks for this video, very informative. I have implemented this in my app. One issue I am having - I copied the two_factor templates to my templates folder, but the app is not picking those up. It still refers back to the html templates in the install folder where two_factor was installed (env/lib/site-packages/two_factor/...). How do I get it to find them in my templates folder? All other templates in the app are using the correct folder.
@CoCo-yz6jh3 жыл бұрын
Very nice! Thank you so much 😊
@veryacademy3 жыл бұрын
You're welcome 😊
@CoCo-yz6jh3 жыл бұрын
Sir I need to know few things about Django! Can you please help me with that? Thanks in advance 😊
@veryacademy3 жыл бұрын
@@CoCo-yz6jh Hmmm, what few things would you like to know!
@CoCo-yz6jh3 жыл бұрын
Is there any way to chat with you?
@nietzschebietzsche2 жыл бұрын
Thanks for this video. Like Tuấn-Hiển Ngô, I did have problems trying to implement my customized templates the way you did. I ended up putting the content_wrapper back which made it easier. This video saved me a LOT of time implementing 2FA though. I particularly appreciate the custom template tag you made because I would have had no idea how to do that (I am not a fan of the wizard forms).
@iamrealnurs83683 жыл бұрын
is there any previous videos?
@blackpetergriffin1793 жыл бұрын
IS THERE ANY POSSIBLITY YOU COULD ADD EMAIL VERFICATION TO THE GROUP AS WELL!
@SomeOne-lj7fl2 жыл бұрын
Please show us how to setup yubikeys with this package. The docs say to use validation services like YubiCloud but it is not clear how to do that.
@iamrealnurs83683 жыл бұрын
Where can I get your app in the beginning?
@rec-trick2 ай бұрын
how to use with rest api ?
@ritvikdayal37353 жыл бұрын
Thankyou for making it a piece of cake. I was trying this and wanted to create a policy for every registered user to enable 2FA on their first login can you please help. I looked into the documentation but did not found anything related.
@veryacademy3 жыл бұрын
Np, its easy once you know how
@ritvikdayal37353 жыл бұрын
@@veryacademy Can you please point me to a direction as I am trying it now. I mean If there is some blog or documentation I can read.
@hassanshanun10672 жыл бұрын
I'm getting a templatetag not found error for the login page. TemplateSyntaxError at /account/login/ 'two_factor' is not a registered tag library. Any one know the solution to this?
@veryacademy2 жыл бұрын
Been a while, first check that the library is added in the settings.py file if needed, then check documents, two_factor tag might have changed with a new version since recording
@ruelagnes96073 жыл бұрын
amazing man, youre the one , youre the man,thank you man
@nikhilbhardwaj60552 жыл бұрын
How can we implement it with django-rest-framework?
@FarhanAhmed13603 жыл бұрын
Great tutorial
@KrishnaManohar80213 жыл бұрын
Excellent. How can we implement multi login system? Ex: we implement custom user model with jwt tokens. When staff login we show staff template, when admin login we show admin template, when others login we some some template like this how can we complete with this logic? (Please make tutorial custom user model with jwt tokens & frontend react JS)
@quitosoft2 жыл бұрын
Thanks for the video! I've seen it twice, also downloaded the repository but I can't get it to work. Files are missing or have bad references. I don't know, I'm very new to django yet to solve it. Has anyone managed to make it work? if yes.... can you share it?
@tahsincanulgen63593 жыл бұрын
Hey bro, thanks for this video. I get an error message in the qr code part: Entered token is not valid. I searched but couldn't find anything
@miguelcorreia34583 жыл бұрын
How do I redirect an authenticated user when trying to access the login page? Tried redirect_authenticated_user but it did not work with two_factor, any suggestion? Thanks for the video, good content!
@CHIDUBEMENWELU8 ай бұрын
Have you found out now ?😢
@azoskaisaac67562 жыл бұрын
I keep getting this error "'GeneratorMethod' object has no attribute 'get_verbose_action'" and help
@abukarabdullahi4196 Жыл бұрын
I have the same problem. Do you have any solution?
@azoskaisaac6756 Жыл бұрын
@abukarabdullahi4196 comment that section out of the html code. It's in the original package but modified in this tutorial.