I can't tell how much this tutorial helped to learn and implement together by watching video. It's works like charm.. Thanks for your great effort and work. Surely one day you will be on top of the coders channel here. Keep growing! Subscribed!
Thanks alot mam❤ Iam having a little question ... If iam making a form with moving div Iam hiding the signup div using another div which contains a button How do i change the position of that div to hide the sign-in div instead of sign-up div .. a little notice ... they both at the same page i want to use that div with the button as a moving window to hide one of the sign-up or sign-in divs by moving the position of that moving div to right and left
Hello Ma'am, Thank you so much ❤ for this amazing tutorial. Your idea of this project and explanation ❤, both are amazing. One thing i did not understand. my interface is completely blank only the default code is there but still registration is working perfectly, the data is saved into db. how is this happening? i'm asking for only registraion. Please reply and Thanks Again.
Ma'am, I ran your repository code, but it is also displaying an error. After clicking the Sign In or Register button, a Toast card appears with the message "Something went wrong." what can I do.
currently im having a problem when im in home page and i reload it the login page flashes for a moment, why is that? currently i implemented a guard that if the user is not logged in redirect the user to login page if trying to access home page.
Can you please tell how to do same project in angular 17 because there is no.app module in that so.i am confused there is content on internet for 17 related to multiple forms connected to one another
Thanks a lot that was way too helpful 🎉🎉❤ I am having a question in here 💭 What if I am making an edit personal info form and there is a current password and new password inputs how can I connect the value of the current password with the value of the password that is in the register form ?
If you wanna show the current password in edit personal info form, better user types it and on submit you can validate. It is not secure to keep the current password in edit page
I had the same issue using Angular 17 which apparently the new versiion forces npm to instal as a standalone module. Inorderwords you'll need to use flags to force get modules
We need to use --no-standalone to generate module ts file in latest angular version. Command: ng new angular-login-app --routing --no-standalone 2) add "useDefineForClassFields": false property in tsconfig.json file under compilerOptions "compilerOptions": { "useDefineForClassFields": false, //other properties }
When you create an angular app using ng new, either you can give yes to the routing or give - - routing for adding the app.routing.module.ts. It is mentioned in the initial project creation step. If you missed, please give the command ng generate module app-routing - - flat - - module=app
I generated the project structure. I am unable find app.routing.nodule.ts file in my codebase. I tried ng generate module app-routing--flat--module=app but got an error class name is invalid. How to resole this issue
Did you added the code for navigate url to home? If yes, is the url changing? Please check the code which I have shared. If nothing helps, please share ur code
In the tutorial it is mentioned to run a command using json-server Or watch the below one for installing json server th-cam.com/video/KoJocWH15io/w-d-xo.htmlsi=vwBPAm82vFbSDSkU
just started my journey of learning primeng and I don't know what had changed but now if app-routing.module.ts and app.module.ts files are missing when you create the app then you need to add 'no-standalone' when creating the "ng new angular-primeng-app --no-standalone --routing"
Thanks,All your videos are very important for me because I am using this in my project and I didn't know about it but your videos are very helpful for me only one request if you have not push some code on git then push it.
For Angular Latest version with standalone , please follow the below video
th-cam.com/video/nTWZB8bWAJE/w-d-xo.html
what a great explanation, its easy to understand for an amateur like me, who starting using angular.
Big Clap!.
I have been working on angular for the last 3yrs...never seen the angular explanation like you🎉
Keep it up! 👍
I can't tell how much this tutorial helped to learn and implement together by watching video.
It's works like charm..
Thanks for your great effort and work.
Surely one day you will be on top of the coders channel here.
Keep growing!
Subscribed!
Thank you so much!!! Your tutorial is amazing, i'm loving it, i'm already at 30:31
36:30
Very Very Helpful for me! thank you so much for it.
Please upload more video like this and CRUD operation in angular.
You are teaching very nice.
Great tutorial! Please make more videos in Angular, Thank you so much, greetings from Mexico!
Вы моя спасительница! спасибо вам огромное!!!
Lovely explanation and got help when there was utmost need !!!
Thanks ma'am
Nice explanation ...really amazing
Great tutorial! Greetings from Mexico!
Great video! 💪
Nice Video Mam..!
Very Helpfull for me...!🎉🎉🎉🎉
Please upload more video like this and CRUD operation in angular.
Best Explanation!
thank you very much!!! well done
Thanks alot mam❤
Iam having a little question ...
If iam making a form with moving div
Iam hiding the signup div using another div which contains a button
How do i change the position of that div to hide the sign-in div instead of sign-up div
.. a little notice ...
they both at the same page i want to use that div with the button as a moving window to hide one of the sign-up or sign-in divs by moving the position of that moving div to right and left
Thank you tons
Can you do a video for creating login and signup page using angular,node js,mongodb,expressjs
Hello Ma'am, Thank you so much ❤ for this amazing tutorial. Your idea of this project and explanation ❤, both are amazing.
One thing i did not understand. my interface is completely blank only the default code is there but still registration is working perfectly, the data is saved into db. how is this happening? i'm asking for only registraion.
Please reply and Thanks Again.
Hello mam, which angular version you are using??? If its not 17 could you plz upload for 17 if possible??
it's not 17 ! i find the same problem because of that , untill i found that version is not matched !!!
@@ikrammahfoud3629
install angular 16th version using this coment
npm i @angular/cli@16.1.0
because this project is done is angular 16 v
Ma'am, I ran your repository code, but it is also displaying an error. After clicking the Sign In or Register button, a Toast card appears with the message "Something went wrong." what can I do.
Please run the json-server command parallely as mentioned in the video. May be api is not connected
@@haseena.khader gotcha !!!!!
love it💕💕😊😊
currently im having a problem when im in home page and i reload it the login page flashes for a moment, why is that? currently i implemented a guard that if the user is not logged in redirect the user to login page if trying to access home page.
Nice video.
Can you please tell how to do same project in angular 17 because there is no.app module in that so.i am confused there is content on internet for 17 related to multiple forms connected to one another
Bro did you complete it in 17 ?? If yes then please share me the Source code of it.
Thanks a lot that was way too helpful 🎉🎉❤
I am having a question in here 💭
What if I am making an edit personal info form and there is a current password and new password inputs how can I connect the value of the current password with the value of the password that is in the register form ?
If you wanna show the current password in edit personal info form, better user types it and on submit you can validate. It is not secure to keep the current password in edit page
@@haseena.khader do I use the same validation way you used for doing that?
No.. That should be validated in the backend
@@haseena.khader oh , well I am not very familiar with connecting to the backend API 's
Have you made a video about that ?
Not yet. Now only frontend tutorials.
Which database have you used to store the user details ? Json or MySQL ?
I am using json-server
what extensions were you using?
Hi
How can i build this project , i did ng build but index.html is not working 😢
Thank you..
5:30 where did u get the node modules of theme ?
While installing primeng you will get some themes also
I had the same issue using Angular 17 which apparently the new versiion forces npm to instal as a standalone module. Inorderwords you'll need to use flags to force get modules
good job
Please make more videos in angular
We need to use --no-standalone to generate module ts file in latest angular version.
Command:
ng new angular-login-app --routing --no-standalone
2) add "useDefineForClassFields": false property in tsconfig.json file under compilerOptions
"compilerOptions": {
"useDefineForClassFields": false,
//other properties
}
Where can I learn everything about Angular? Can you recommend books, websites, please?
I usually follow angular website itself
good
Somehow when I create services it doesnt genereaate the same files that you have. I dont have app-routing.module.ts. Any help?
When you create an angular app using ng new, either you can give yes to the routing or give - - routing for adding the app.routing.module.ts. It is mentioned in the initial project creation step. If you missed, please give the command ng generate module app-routing - - flat - - module=app
why is that property 'fb' is used before its initialization
same problem
madam , I am using Angular 14 , when I am going to match the password using matchpasswordValidators function it's not working .
In Angular 14, custom validator is little bit different
@@haseena.khader okkk, thank you madam
I generated the project structure. I am unable find app.routing.nodule.ts file in my codebase. I tried ng generate module app-routing--flat--module=app but got an error class name is invalid. How to resole this issue
In Angular 17, structure is different. This project is on Angular 16. I will have a look
How to update email in firebase authentication?
I installed everything, but still the classes are not getting applied. Pls help me out
Please make sure the Primeflex installed. Check path in angular.json or style.css
Hello , when i login i directs me to nothing i'm stuck on the login page
Did you added the code for navigate url to home?
If yes, is the url changing?
Please check the code which I have shared. If nothing helps, please share ur code
merci
In this how the Id in json is randomly generating
how ti insert theses prime links in style.css files?
Using @import
when I'm trying to login or register its showing as something is went wrong please may I know whats is the issue and how can I solve it..
Did you run json server in parallel?
no
@@haseena.khader
Please run that... That is the backend in this tutorial
can you please reply how to solve it
In the tutorial it is mentioned to run a command using json-server
Or watch the below one for installing json server
th-cam.com/video/KoJocWH15io/w-d-xo.htmlsi=vwBPAm82vFbSDSkU
just started my journey of learning primeng and I don't know what had changed but now if app-routing.module.ts and app.module.ts files are missing when you create the app then you need to add 'no-standalone' when creating the "ng new angular-primeng-app --no-standalone --routing"
For angular latest version , you can follow th-cam.com/video/nTWZB8bWAJE/w-d-xo.html
Hi mam, how to prevent multiple tab open on the same browser just like whatsapp web
Sorry I didn't get the question.
Mam how we will add this datas into mongo db
Instead of json server api you have to call backend api
@@haseena.khadermam can you make a short video plz
Sorry Sayooj. I am more on frontend technology.
Thanks,All your videos are very important for me because I am using this in my project and I didn't know about it but your videos are very helpful for me only one request if you have not push some code on git then push it.
I think I have pushed the code. I will verify again.
Thanks
Repo is uptodate. Last changes was the guard. it is there already. Let me know if you face any issue
@@haseena.khader ok,thanks👍👍👍
I bet you are a malayali mam.
i dont have the same files as mentioned in the video
and instead of app-routing-module.ts i have app. routes.ts in my inventory
what shuld i do?
Angular 17 structure is little bit different.