Hey! I have been extremely busy this week so it took me longer than I initially expected to find the time to create this video. Nonetheless I had so much fun creating it. Let me know what you think! 😊
@K8LOYT9 ай бұрын
wow thank you so much, I know I request this ☺
@PikoCanFly9 ай бұрын
@@K8LOYT You are very welcome. I hope you find it useful! 😊
@K8LOYT9 ай бұрын
very usefull that encrypt and decrypt part most usefull and logic behind handling such situations. @@PikoCanFly
@ReasonsDefiled9 ай бұрын
Amazing work! I love that you took the time to explain everything in detail. I found it extremely useful especially thar you explain the token generator and how to decode, I have been searching for this for a long time. You are a life saver.
@PikoCanFly9 ай бұрын
Awesome, thank you!
@HAverroes8 ай бұрын
You did it again! Awesome Tutorial 👏👏
@PikoCanFly8 ай бұрын
Glad you like it! 🥰
@InfoNympho-b9z8 ай бұрын
Very nicely explained! Thank you!
@PikoCanFly8 ай бұрын
You're very welcome!
@free-will-of-my-heart5 ай бұрын
Great work! Thank you!!!!!! Now you've got a new subscriber!
@kylec.54766 ай бұрын
this was actually quite helpful. thanks!
@AkeabMesfin6 ай бұрын
thanks! very much you dont know how much this video saved me!
@PikoCanFly6 ай бұрын
I am so happy to hear it helped. 😀
@kunal-wn4pkАй бұрын
Thank you mam you did it from scratch , from india .
@lalfon3605 ай бұрын
Amazing video!, super helpful and well explained
@PikoCanFly5 ай бұрын
Thank you so very much! 😊
@JuanitoPerez-f1i8 ай бұрын
Thanks and greetings from Chile.
@PikoCanFly8 ай бұрын
Con gusto! 😊
@jraulc10 күн бұрын
Mandatory next stop: JWT Authentication System in Django and React.js. Thanks!
@PikoCanFly10 күн бұрын
You are very welcome! Thank you! 😊
@jainmaria56302 ай бұрын
Thank you very much. You explained each and every step. It helped me a lot. Could you please make a video on how to sign up with the auto-generated password received in the email?
@PikoCanFly2 ай бұрын
Happy you found it helpful! That's a great suggestion; I will keep it in mind. 😊
@Lets_code_together_6 ай бұрын
Hey ms.Piko please go a head to create django playlist and your voice is damn cool and i think you attracting leaners with your voice
@M.I.S7 ай бұрын
very GOOd!
@OpeyemiIsrael2 ай бұрын
Can this be modified to work with React on the frontend ? Because you're using Django for for both front and back ends
@shadrack33708 ай бұрын
Thanks a lot
@PikoCanFly8 ай бұрын
Most welcome!
@M.I.S7 ай бұрын
thanks!
@markogles34837 ай бұрын
I'm getting an Exception Value: super() argument 1 must be a type, not str when registering a user. Can you help?
@PikoCanFly7 ай бұрын
Hi, if I were you I would recheck my super() call in forms.py If you have followed the tutorial, it should look like this: user=super(RegistrationForm, self).save(commit=False) I hope that helps :)
@markogles34837 ай бұрын
I apologize . I should have sent the exception location in the first email.
@UchihaRamuk3 ай бұрын
@PikoCanFly Hi , I am student , and very new to these projects , me and my friend have tried the exact thing as you did , but we are not getting any verification link . Could you please help , It will be very helpful. Plz reply
@PikoCanFly3 ай бұрын
Hi, I am sorry to hear you are struggling. The code is available on my Github. I hope that helps. That being said, a common reason for email issues is incorrect email configuration [ SMTP settings ] . If I were you I would start with verifying the SMTP settings , including the server, port, and security options. Good luck! :)
@stockmarketwithab73818 ай бұрын
hey do you know wagtail csm ??
@PikoCanFly8 ай бұрын
Yes
@stockmarketwithab73818 ай бұрын
wow can you plase make tutorial of that if you have free time @@PikoCanFly
@stockmarketwithab73818 ай бұрын
can you please make tutorial on wagtail if you are free from start@@PikoCanFly
@CheesyFuture8 ай бұрын
Probably it would be better to create all of that inside an app instead on the main project, wouldn't it??
@PikoCanFly8 ай бұрын
It depends on your project structure and use case.
@maxsll33723 ай бұрын
i need help can someon help ?
@PikoCanFly3 ай бұрын
What do you need help with?
@byronhayes5196 ай бұрын
Hello, thanks for the awesome video. I am getting an error during template rendering when i try to register a user. django.urls.exceptions.NoReverseMatch: Reverse for 'activate' with keyword arguments '{'uidb64': '', 'token': 'c63f4k-9513de088b89a2ed3c0e462dad785146'}' not found. Any advice on how to fix this? Thank you
@PikoCanFly6 ай бұрын
Hello, Try to double-check that the values you're passing for uidb64 and token are correct and valid. It seems like the uidb64 value is empty in your error message, which might indicate an issue with generating or passing this value. I hope that helps. :)