Angular 17 Login | With API Integration

Поділитися
Вставка
  • Опубліковано 27 січ 2025

КОМЕНТАРІ • 88

  • @akashwaghmare5913
    @akashwaghmare5913 13 днів тому

    "I learn everything from your videos. Thank you!"

  • @maxwellau7355
    @maxwellau7355 5 місяців тому +1

    I love the way you teach. thank you for helping me

  • @alpsprajapati
    @alpsprajapati 9 місяців тому

    Loved the way your are explaning. to the point. Thanks

  • @tuananhtran5486
    @tuananhtran5486 4 місяці тому

    Super efforts and appreciated bro, thanks.

  • @hirushamalith7801
    @hirushamalith7801 Рік тому

    Awesome , your teaching really help me to understand the coding, implementation, design and testing so far (including all the application) so waiting for eCommerce app with angular 17 project part 03 and rest of the remaining parts of the previous application that you already gave us.

  • @adekolaadelana2384
    @adekolaadelana2384 7 місяців тому

    You got a new subscriber today. Thanks for the tutorial

  • @akiii461
    @akiii461 Рік тому +1

    Thanks for the tutorial...😊

  • @Venkatesh-z6h2z
    @Venkatesh-z6h2z Місяць тому

    Great sir

  • @vilaskiran266
    @vilaskiran266 Рік тому +1

    Great sir

  • @mugatu2017
    @mugatu2017 Рік тому

    thanks for your contribution to the comunity, just one thing, is not longer neceseary to inject a service in the constructor you cand do like this. loginSvc = inject(LoginService)

  • @rryann088
    @rryann088 9 місяців тому

    If youre here for routes in Angular 17, 9:00

  • @albuquerqueroger
    @albuquerqueroger 10 місяців тому

    Thank you sir!

  • @satishmore.8140
    @satishmore.8140 8 місяців тому

    Thank you so much.

  • @ahmedhegazy3875
    @ahmedhegazy3875 7 місяців тому

    Very nice code

  • @loremipsum-t8c
    @loremipsum-t8c Рік тому +1

    on you're git hub don't have codes about this angular login app. u copied html and css codes. not wrote. And now what should I do ? How can I find this html and css codes?

  • @ngozireginaesenwa5458
    @ngozireginaesenwa5458 9 місяців тому

    Thank you very much

  • @naguallu9106
    @naguallu9106 2 місяці тому

    Can u please tell me real time scenario sir , like how payload format will come , how to pass request to the server
    ..

  • @dcode08
    @dcode08 Рік тому

    Thank you sir

  • @sunilshinde4595
    @sunilshinde4595 4 місяці тому

    I suppose that login page is showing first and then dashboard, this is happened after login and refresh a page on dashboard, can you tell me what happened?

  • @goutambarfa7072
    @goutambarfa7072 11 місяців тому +1

    Sir router. Navigate method not show than how i can navigate now after importing router

    • @vaibhavroje5932
      @vaibhavroje5932 11 місяців тому

      Check where the router module is imported, import router from core library not express

  • @SanjaySharma-s2d
    @SanjaySharma-s2d 10 місяців тому

    Thank for this, could you please provide a video on forgot password and reset password?

  • @mv7413
    @mv7413 3 місяці тому

    I am getting CORS error for the http request to Swagger. Could you please help me to resolve this issue.

  • @benmakhloufaya5037
    @benmakhloufaya5037 11 місяців тому +1

    why you didn't use the services?

  • @AnasBensaid-xs6hq
    @AnasBensaid-xs6hq 9 місяців тому +2

    i get eror in debuger when i try to login

  • @mohitkuttarmare4199
    @mohitkuttarmare4199 8 місяців тому

    Hello I am getting cors error while hitting api can you please tell me in this case how can I resolve this? I tried multiple soln but not success

  • @NaveenKumar-hw7sd
    @NaveenKumar-hw7sd 5 місяців тому

    login page is not displayed , i followed upto router imports in app component......video 11.57

    • @LearningPartnerDigital
      @LearningPartnerDigital  5 місяців тому

      @@NaveenKumar-hw7sd checking router outlet is added in app component

  • @Vinchiii1822
    @Vinchiii1822 9 місяців тому

    How to use the /api/User/GetAllUsers? I am getting a 401 error. I am experimenting and trying to delete the dummy email I created. Thanks.

    • @LearningPartnerDigital
      @LearningPartnerDigital  9 місяців тому

      Api are authorised u need to pass token u get in login api

    • @Vinchiii1822
      @Vinchiii1822 9 місяців тому

      @@LearningPartnerDigital How to pass the token?
      I tried using this const headers = new HttpHeaders().set('Authorization', `Bearer ${token}`);
      I replaced the token with the token I got from Login API but still unauthorized.

    • @Vinchiii1822
      @Vinchiii1822 9 місяців тому

      @@LearningPartnerDigital I tried using Postman and manually added the token that I got from Login API but still 401Unauthorized. Please help. Thank you.

  • @AjayCoding
    @AjayCoding Рік тому +1

    great. can you add oauth2?

  • @UnknownView23
    @UnknownView23 Рік тому

    Can you make video on how to integrate admin lte3 in angular 17. Having one common layout for all module in angular

  • @sanket6543
    @sanket6543 Рік тому

    Can you please start explain all new features in angular 17

  • @bharathirajasubramanian1988
    @bharathirajasubramanian1988 11 місяців тому

    ngModel is throwing error even after adding FormsModule in the logincomponent

    • @LearningPartnerDigital
      @LearningPartnerDigital  11 місяців тому

      What error u are getting

    • @sagarbhasate7449
      @sagarbhasate7449 8 місяців тому

      @@LearningPartnerDigital NG8002: Can't bind to 'ngModle' since it isn't a known property of 'input'.

  • @eddie8575
    @eddie8575 Рік тому +1

    seems login api returning some token what's purpose of it

    • @GuiSilva1
      @GuiSilva1 8 місяців тому

      the token is like a ticket that the website grants you such that if you use it later, the website knows it can only be you. This is useful, for example, if you want to restrict certain urls, like account settings, to only users that are logged in. To access this url, users must provide their token, otherwise, they are not logged in. From a token, we can retrieve the user data, like name, email, profile picture. All of this would need to be configured in the API backend, like django

  • @bennybillions9462
    @bennybillions9462 8 місяців тому

    A cross-origin resource sharing (CORS) request was blocked because of invalid or missing response headers of the request or the associated

  • @meghatare1052
    @meghatare1052 11 місяців тому

    In angular 17 i am not able to import httpClientModule how can you able to import this?

  • @shreyasdeshpande1304
    @shreyasdeshpande1304 Місяць тому

    I want to acces swagger api. Is this chargeable ?

  • @sirmntuli
    @sirmntuli 8 місяців тому

    Hi Sir, I am getting CORS error when hitting the login API.

  • @Whatdahail
    @Whatdahail 10 місяців тому

    do you something for angular 17 with restful api

  • @muniramirzoeva6656
    @muniramirzoeva6656 Місяць тому

    the link of api isnt working

  • @ginlynmartin2684
    @ginlynmartin2684 3 місяці тому

    sir kindly share me the webapi source code for login thank you

  • @gowthamiallam-sr5eh
    @gowthamiallam-sr5eh 5 місяців тому

    i am getting cors error when i used the api please help

  • @LindaElsa-ri6ix
    @LindaElsa-ri6ix Рік тому

    sir , please can you update the repo

  • @vanithaks2215
    @vanithaks2215 8 місяців тому

    where to find the code ?

  • @AnkitTiwari-qt5ds
    @AnkitTiwari-qt5ds 11 місяців тому

    I want to create a Forget password form in Angular.. i will take Email and it will get verified from the backend and if it's correct then one link will be sent on that email to reset the password and from that link the user can change the password..

  • @JoseCardenas-zs4on
    @JoseCardenas-zs4on 8 місяців тому

    where is the node_moduler file?

  • @Shoaib-Rajput
    @Shoaib-Rajput Рік тому

    Sir G pls provide source code

    • @LearningPartnerDigital
      @LearningPartnerDigital  Рік тому

      Please check repo

    • @LearningPartnerDigital
      @LearningPartnerDigital  Рік тому

      Angular 17 login

    • @Shoaib-Rajput
      @Shoaib-Rajput Рік тому

      @@LearningPartnerDigital Thanks Sir Kal tk empty thi Repo Sir

    • @LearningPartnerDigital
      @LearningPartnerDigital  Рік тому

      @@Shoaib-Rajput yes..one more login scenario..with Local-Storage I wanted to do then I would have pushed it

    • @Shoaib-Rajput
      @Shoaib-Rajput Рік тому

      @@LearningPartnerDigital Ok Sir I'm beginner and I follow your videos I also create ZoomCar Zomato app and now working on login page

  • @amanverma8300
    @amanverma8300 7 місяців тому

    Login and JWT both api is not working.why?

  • @dhanurdarsahhu8659
    @dhanurdarsahhu8659 4 місяці тому

    getting CORS error xhr login.component.ts:22

    • @LearningPartnerDigital
      @LearningPartnerDigital  4 місяці тому

      @@dhanurdarsahhu8659 use api from projectapi.gerasim.in user api..run project on 4209

  • @MovaClub
    @MovaClub Рік тому

    shit! no repo :) dude, what you're doing?

  • @anas-agario5035
    @anas-agario5035 9 місяців тому

    i get eror in debuger when i try to login