11. Advanced Authentication in Django | Django complete tutorial

  Рет қаралды 62,621

Coding for All

Coding for All

Күн бұрын

Пікірлер: 66
@codingforallnewtonschool
@codingforallnewtonschool Ай бұрын
Book your seats before the Price Increase - bit.ly/3yZthF6 Coupon - DJMASTER
@codespider148
@codespider148 Жыл бұрын
bro really really thanks aagar mai aaj django sikan hun toh uska reason sirf tum ho sachme bahut helpfull hai tutorials keep it up hoping more such kind of tutorials from you
@vaibhavsatone2940
@vaibhavsatone2940 Ай бұрын
15:10 Just a little correction the create_user method itself calls set_password . This ensures the password is hashed securely before being saved to the database. i.e. this code "user = User.objects.create_user(username=U_N, email=email, password=p1)" is equal to "user = User(username=U_N, email=email) user.set_password(p1) user.save()"
@adarshpandeyyt
@adarshpandeyyt 2 ай бұрын
Ok, you're doing well to taught us...🎉
@ravi_1_0_1_0
@ravi_1_0_1_0 9 ай бұрын
really good series !! my first time exploring this domain . The credits to you .
@Funny-dl7io
@Funny-dl7io Жыл бұрын
Thanks for this tutorial play list. Love from Bangladesh.
@muhammadnomanaslam184
@muhammadnomanaslam184 6 ай бұрын
great effort ladke, aur advance congratulations for 100k subcribes xd, keep it up
@ananyavats6914
@ananyavats6914 Жыл бұрын
Following your all django videos❤
@codewithom11
@codewithom11 Жыл бұрын
Brother, i have a doubt. Whatever we are doing is on local right. But if i want to deploy the app, i must use real time databases. In that case, can we use django's inbuilt authentication or we have to use other services?
@siddheshrajgure8097
@siddheshrajgure8097 Жыл бұрын
Same question
@surajpatil7604
@surajpatil7604 Жыл бұрын
we can use the inbuilt authentication as it loads data from the server. if you have the data in the server we can use the inbuilt function
@navedahemdkhan9548
@navedahemdkhan9548 10 ай бұрын
Such great work
@KamalSaxena-ns2hf
@KamalSaxena-ns2hf Жыл бұрын
Sir, full stack Web development course tranning institute batao Edureka vs newton schools vs others in details compare
@gatecsementor
@gatecsementor Жыл бұрын
Content is absolute amazing. Can you please provide the project link
@mshahzaibbaghdadi4902
@mshahzaibbaghdadi4902 2 ай бұрын
nice g
@rajashehryar2002
@rajashehryar2002 2 ай бұрын
Very nice video . Keep it up
@eveil_bakwas
@eveil_bakwas Жыл бұрын
Can you please make all videos on django a-z in deep and please also make project
@aakashyadav3351
@aakashyadav3351 8 ай бұрын
jab aap user pe click kar rhe ho toh models wali clas kese open ho jaaye
@aqsazubair1173
@aqsazubair1173 Жыл бұрын
best content for learning django 😇
@amanverma5846
@amanverma5846 Жыл бұрын
Amazing sir that very easy to learn cause of you
@samurai1811
@samurai1811 9 ай бұрын
Great Video
@aa.shourav
@aa.shourav Жыл бұрын
Thank you for the series 😍😍
@AyushPandey-jx5ie
@AyushPandey-jx5ie Жыл бұрын
Fabulous content 👏
@code-with-vivek
@code-with-vivek Жыл бұрын
Nice video with great info...
@thoropyt9955
@thoropyt9955 Жыл бұрын
thanks you for making this type of content:)
@ram-2-ram
@ram-2-ram 11 ай бұрын
great video
@KanpurSwagger
@KanpurSwagger Жыл бұрын
Continuing🎉🎉🎉
@Rishabhkumar-ys3jc
@Rishabhkumar-ys3jc 6 ай бұрын
good video
@simranjeetsingh4653
@simranjeetsingh4653 11 ай бұрын
sir validations ka uper vedio bnao
@VaibhavC-co1bi
@VaibhavC-co1bi Жыл бұрын
Cannot get the user values in shell
@softwareengineer1
@softwareengineer1 8 ай бұрын
best ending 😁
@Ameyiscool
@Ameyiscool 7 ай бұрын
kya aap bhi Django seekh rahe ho?
@sharab2639
@sharab2639 Жыл бұрын
Vai pls makes more django projects videos again
@waqarahktar-k2t
@waqarahktar-k2t Жыл бұрын
thanks you 😀
@ayushmantiwari6441
@ayushmantiwari6441 Жыл бұрын
Great!
@dharmeshwadhavana
@dharmeshwadhavana 5 ай бұрын
theme ka extension batado koi plzz
@shashankgaikwad5825
@shashankgaikwad5825 Жыл бұрын
How do you get that link under "User" 10:33
@akashbhandary489
@akashbhandary489 Жыл бұрын
you have to press control+left click
@gaireyc6215
@gaireyc6215 6 ай бұрын
@@akashbhandary489 thank you
@gauravchaudhary6941
@gauravchaudhary6941 Жыл бұрын
i am getting this error cannot access local variable 'first_name' where it is not associated with a value in this: user = User.objects.create( first_name = first_name, last_name = last_name, username = username, ) not able to solve this
@VaibhavC-co1bi
@VaibhavC-co1bi Жыл бұрын
I guess it should be user=User.objects.create_user()
@ghostkhan9242
@ghostkhan9242 7 ай бұрын
user = models.ForeignKey(User , on_delete=models.SET_NULL , null=True, blank=True, unique=True)
@ghostkhan9242
@ghostkhan9242 7 ай бұрын
@@VaibhavC-co1bi user = models.ForeignKey(User , on_delete=models.SET_NULL , null=True, blank=True, unique=True)
@shanksharma5117
@shanksharma5117 Жыл бұрын
Instead of using hardcoded URLs, instead you can provide them name and use their name. It would be better
@MyCodingDiary
@MyCodingDiary Жыл бұрын
Love your videos, just hit the subscribe button!
@whysoserious1054
@whysoserious1054 10 ай бұрын
Can we get the source code?
@yourchannel6024
@yourchannel6024 7 ай бұрын
thank uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu
@songsremixz885
@songsremixz885 Жыл бұрын
Bhai mere me form submit karne pe uname and password submit nahi ho raha
@debashishparida2578
@debashishparida2578 11 ай бұрын
same...queryset mein kuch show nahi ho raha ☹☹
@manojpaudel3460
@manojpaudel3460 8 ай бұрын
i am also getting similar problem. had you got solution for this
@amankatariya3905
@amankatariya3905 Жыл бұрын
wow
@deepanshuchaurasia4839
@deepanshuchaurasia4839 Жыл бұрын
👌👌👌👌
@shashwatjain8602
@shashwatjain8602 Жыл бұрын
share the project link
@shashwatjain8602
@shashwatjain8602 Жыл бұрын
please
@luckydummy-bl2zy
@luckydummy-bl2zy Жыл бұрын
@garud4445
@garud4445 Жыл бұрын
👍👍
@ahsanulanam-4632
@ahsanulanam-4632 7 ай бұрын
Cmnt kar diya
@JavedRahman-zj2fm
@JavedRahman-zj2fm Жыл бұрын
👍♥️
@KajalSharma-t6t
@KajalSharma-t6t Жыл бұрын
ye error aara h jbki name b unique h... UNIQUE constraint failed: auth_user.username
@ayushjaiswal648
@ayushjaiswal648 Жыл бұрын
did u get the solution..?
@kajalsharma_mk
@kajalsharma_mk Жыл бұрын
Yes​@@ayushjaiswal648
@ghostkhan9242
@ghostkhan9242 7 ай бұрын
user = models.ForeignKey(User , on_delete=models.SET_NULL , null=True, blank=True, unique=True)
@ghostkhan9242
@ghostkhan9242 7 ай бұрын
@@ayushjaiswal648 user = models.ForeignKey(User , on_delete=models.SET_NULL , null=True, blank=True, unique=True)
@__ayu
@__ayu Жыл бұрын
AttributeError: 'function' object has no attribute 'set_password' [01/Oct/2023 23:06:55] "POST /register/ HTTP/1.1" 500 64927
@nature09997
@nature09997 5 ай бұрын
Brother, i have a doubt. Whatever we are doing is on local right. But if i want to deploy the app, i must use real time databases. In that case, can we use django's inbuilt authentication or we have to use other services?
12. Advanced Authentication in Django | Django complete tutorial
22:09
Coding for All
Рет қаралды 30 М.
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 41 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
8. Create a RecipeProject in Django - Part 1
24:17
Coding for All
Рет қаралды 65 М.