├── Food-order ├── .gitignore ├── firstapp ├── src │ ├── assets │ │ └── .gitkeep │ ├── app │ │ ├── nav │ │ │ ├── nav.component.css │ │ │ ├── nav.component.ts │ │ │ ├── nav.component.html │ │ │ └── nav.component.spec.ts │ │ ├── about │ │ │ ├── about.component.css │ │ │ ├── about.component.html │ │ │ ├── about.component.ts │ │ │ └── about.component.spec.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.ts │ │ │ └── home.component.spec.ts │ │ ├── admin │ │ │ ├── list │ │ │ │ ├── list.component.css │ │ │ │ ├── list.component.html │ │ │ │ ├── list.component.ts │ │ │ │ └── list.component.spec.ts │ │ │ ├── login │ │ │ │ ├── login.component.css │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.ts │ │ │ │ └── login.component.spec.ts │ │ │ ├── admin.module.ts │ │ │ └── admin-routing.module.ts │ │ ├── contact │ │ │ ├── contact.component.css │ │ │ ├── contact.component.html │ │ │ ├── contact.component.ts │ │ │ └── contact.component.spec.ts │ │ ├── counter │ │ │ ├── counter.component.css │ │ │ ├── counter.component.html │ │ │ ├── counter.component.ts │ │ │ └── counter.component.spec.ts │ │ ├── view-child │ │ │ ├── view-child.component.css │ │ │ ├── view-child.component.spec.ts │ │ │ ├── view-child.component.html │ │ │ └── view-child.component.ts │ │ ├── user │ │ │ ├── saving-acc │ │ │ │ ├── saving-acc.component.css │ │ │ │ ├── saving-acc.component.html │ │ │ │ ├── saving-acc.component.ts │ │ │ │ └── saving-acc.component.spec.ts │ │ │ ├── current-acc │ │ │ │ ├── current-acc.component.css │ │ │ │ ├── current-acc.component.html │ │ │ │ ├── current-acc.component.ts │ │ │ │ └── current-acc.component.spec.ts │ │ │ └── user.module.ts │ │ ├── child-lifecycle-hooks │ │ │ ├── child-lifecycle-hooks.component.css │ │ │ ├── child-lifecycle-hooks.component.html │ │ │ ├── child-lifecycle-hooks.component.ts │ │ │ └── child-lifecycle-hooks.component.spec.ts │ │ ├── parent-lifecycle-hooks │ │ │ ├── parent-lifecycle-hooks.component.css │ │ │ ├── parent-lifecycle-hooks.component.html │ │ │ ├── parent-lifecycle-hooks.component.ts │ │ │ └── parent-lifecycle-hooks.component.spec.ts │ │ ├── app.component.css │ │ ├── beverages │ │ │ ├── beverages.component.css │ │ │ ├── beverages.component.html │ │ │ ├── beverages.component.ts │ │ │ └── beverages.component.spec.ts │ │ ├── demo-directive.directive.spec.ts │ │ ├── auth.guard.spec.ts │ │ ├── auth.guard.ts │ │ ├── demo-directive.directive.ts │ │ ├── user-routing.module.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.spec.ts │ │ └── app.module.ts │ ├── favicon.ico │ ├── styles.css │ ├── main.ts │ └── index.html ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── tsconfig.app.json ├── tsconfig.spec.json ├── .editorconfig ├── .gitignore ├── tsconfig.json ├── README.md └── package.json ├── todoList ├── src │ ├── assets │ │ └── .gitkeep │ ├── app │ │ ├── app.component.css │ │ ├── todo-list │ │ │ ├── task.ts │ │ │ ├── todo-list.component.spec.ts │ │ │ ├── todo-list.component.css │ │ │ └── todo-list.component.ts │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.spec.ts │ │ └── app.module.ts │ ├── favicon.ico │ ├── styles.css │ ├── main.ts │ └── index.html ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── tsconfig.app.json ├── tsconfig.spec.json ├── .editorconfig ├── .gitignore ├── tsconfig.json ├── README.md └── package.json ├── Crud-using-Services ├── src │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── styles.css │ ├── main.ts │ ├── app │ │ ├── app.component.css │ │ ├── app-routing.module.ts │ │ ├── api.service.spec.ts │ │ ├── dialog │ │ │ ├── dialog.component.css │ │ │ └── dialog.component.spec.ts │ │ ├── api.service.ts │ │ ├── app.component.spec.ts │ │ └── app.module.ts │ └── index.html ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── tsconfig.app.json ├── tsconfig.spec.json ├── .editorconfig ├── .gitignore ├── tsconfig.json ├── db.json ├── README.md └── package.json ├── fb-login-page-routing ├── src │ ├── assets │ │ └── .gitkeep │ ├── app │ │ ├── app.component.css │ │ ├── signup │ │ │ ├── signup.component.css │ │ │ ├── signup.component.ts │ │ │ ├── signup.component.spec.ts │ │ │ └── signup.component.html │ │ ├── forgot-password │ │ │ ├── forgot-password.component.css │ │ │ ├── forgot-password.component.ts │ │ │ ├── forgot-password.component.spec.ts │ │ │ └── forgot-password.component.html │ │ ├── app.component.html │ │ ├── profile │ │ │ ├── profile.component.ts │ │ │ ├── profile.component.spec.ts │ │ │ ├── profile.component.css │ │ │ └── profile.component.html │ │ ├── app.component.ts │ │ ├── login │ │ │ ├── login.component.ts │ │ │ ├── login.component.spec.ts │ │ │ ├── login.component.css │ │ │ └── login.component.html │ │ ├── auth.guard.spec.ts │ │ ├── auth.guard.ts │ │ ├── app.module.ts │ │ ├── app-routing.module.ts │ │ └── app.component.spec.ts │ ├── styles.css │ ├── favicon.ico │ ├── main.ts │ └── index.html ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── tsconfig.app.json ├── tsconfig.spec.json ├── .editorconfig ├── README.md ├── .gitignore ├── tsconfig.json └── package.json ├── FoodOrder_App ├── Food_order │ ├── src │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── food-1.jpg │ │ │ ├── food-2.jpg │ │ │ ├── food-3.jpg │ │ │ ├── food-4.jpg │ │ │ ├── food-5.jpg │ │ │ ├── food-6.jpg │ │ │ ├── food-10.jpeg │ │ │ ├── food-11.jpeg │ │ │ ├── food-12.jpeg │ │ │ ├── food-7.jpeg │ │ │ ├── food-8.jpeg │ │ │ └── food-9.jpeg │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── components │ │ │ │ ├── partial │ │ │ │ │ ├── validations │ │ │ │ │ │ ├── validations.component.css │ │ │ │ │ │ ├── validations.component.html │ │ │ │ │ │ ├── validations.component.spec.ts │ │ │ │ │ │ └── validations.component.ts │ │ │ │ │ ├── input-container │ │ │ │ │ │ ├── input-container.component.css │ │ │ │ │ │ ├── input-container.component.html │ │ │ │ │ │ ├── input-container.component.ts │ │ │ │ │ │ └── input-container.component.spec.ts │ │ │ │ │ ├── title │ │ │ │ │ │ ├── title.component.css │ │ │ │ │ │ ├── title.component.html │ │ │ │ │ │ ├── title.component.ts │ │ │ │ │ │ └── title.component.spec.ts │ │ │ │ │ ├── not-found │ │ │ │ │ │ ├── not-found.component.html │ │ │ │ │ │ ├── not-found.component.css │ │ │ │ │ │ ├── not-found.component.ts │ │ │ │ │ │ └── not-found.component.spec.ts │ │ │ │ │ ├── tags │ │ │ │ │ │ ├── tags.component.html │ │ │ │ │ │ ├── tags.component.css │ │ │ │ │ │ ├── tags.component.ts │ │ │ │ │ │ └── tags.component.spec.ts │ │ │ │ │ ├── search │ │ │ │ │ │ ├── search.component.html │ │ │ │ │ │ ├── search.component.ts │ │ │ │ │ │ ├── search.component.css │ │ │ │ │ │ └── search.component.spec.ts │ │ │ │ │ └── header │ │ │ │ │ │ ├── header.component.spec.ts │ │ │ │ │ │ ├── header.component.html │ │ │ │ │ │ ├── header.component.ts │ │ │ │ │ │ └── header.component.css │ │ │ │ └── pages │ │ │ │ │ ├── home │ │ │ │ │ ├── home.component.spec.ts │ │ │ │ │ ├── home.component.ts │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.css │ │ │ │ │ ├── login │ │ │ │ │ ├── login.component.spec.ts │ │ │ │ │ ├── login.component.css │ │ │ │ │ ├── login.component.html │ │ │ │ │ └── login.component.ts │ │ │ │ │ ├── cart-page │ │ │ │ │ ├── cart-page.component.spec.ts │ │ │ │ │ ├── cart-page.component.ts │ │ │ │ │ ├── cart-page.component.html │ │ │ │ │ └── cart-page.component.css │ │ │ │ │ └── food-page │ │ │ │ │ ├── food-page.component.spec.ts │ │ │ │ │ ├── food-page.component.ts │ │ │ │ │ ├── food-page.component.html │ │ │ │ │ └── food-page.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── constants │ │ │ │ └── urls.ts │ │ │ ├── services │ │ │ │ ├── cart.service.spec.ts │ │ │ │ ├── food.service.spec.ts │ │ │ │ ├── user.service.spec.ts │ │ │ │ ├── food.service.ts │ │ │ │ ├── user.service.ts │ │ │ │ └── cart.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.spec.ts │ │ │ └── app.module.ts │ │ ├── Tag.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── interfaces │ │ │ └── IUserLogin.ts │ │ ├── styles.css │ │ ├── main.ts │ │ ├── test.ts │ │ └── index.html │ ├── Cart.ts │ ├── user.ts │ ├── CartItems.ts │ ├── Food.ts │ ├── .editorconfig │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ ├── .browserslistrc │ ├── .gitignore │ ├── tsconfig.json │ ├── README.md │ ├── package.json │ └── karma.conf.js └── backend │ ├── .gitignore │ ├── src │ ├── .env │ ├── configs │ │ └── database.config.ts │ ├── models │ │ ├── user.model.ts │ │ └── food.model.ts │ ├── router │ │ ├── user.router.ts │ │ └── food.router.ts │ └── server.ts │ ├── tsconfig.json │ └── package.json ├── 03 notes ├── directives diagram.png ├── ngStyle.txt ├── ngClass.txt └── ng-switch.txt ├── 02 TypeScript ├── demo.ts ├── demo.js └── index.html ├── 01 JavaScript ├── hello.html ├── oops.html ├── rest_operator.html ├── ifelse.html ├── switchCase.html ├── ArrayCRUD.html ├── object.html ├── hoisting.html ├── function.html ├── mathMethod.html ├── loops.html └── numberMethod.html ├── .vscode └── launch.json └── readme.md /Food-order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /firstapp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoList/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/nav/nav.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoList/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Crud-using-Services/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fb-login-page-routing/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/about/about.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FoodOrder_App/Food_order/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FoodOrder_App/backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /fb-login-page-routing/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/admin/list/list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/admin/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/contact/contact.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/counter/counter.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FoodOrder_App/Food_order/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FoodOrder_App/Food_order/src/assets/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/view-child/view-child.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fb-login-page-routing/src/app/signup/signup.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/user/saving-acc/saving-acc.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/user/current-acc/current-acc.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/counter/counter.component.html: -------------------------------------------------------------------------------- 1 |
list works!
2 | -------------------------------------------------------------------------------- /firstapp/src/app/admin/login/login.component.html: -------------------------------------------------------------------------------- 1 |login works!
2 | -------------------------------------------------------------------------------- /fb-login-page-routing/src/app/forgot-password/forgot-password.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/child-lifecycle-hooks/child-lifecycle-hooks.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/parent-lifecycle-hooks/parent-lifecycle-hooks.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FoodOrder_App/Food_order/src/app/components/partial/validations/validations.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/app/user/current-acc/current-acc.component.html: -------------------------------------------------------------------------------- 1 |current-acc works!
2 | -------------------------------------------------------------------------------- /FoodOrder_App/Food_order/src/app/components/partial/input-container/input-container.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firstapp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjundhav/Angular/master/firstapp/src/favicon.ico -------------------------------------------------------------------------------- /todoList/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjundhav/Angular/master/todoList/src/favicon.ico -------------------------------------------------------------------------------- /FoodOrder_App/Food_order/src/Tag.ts: -------------------------------------------------------------------------------- 1 | export class Tag{ 2 | name!:string 3 | count!:number 4 | } 5 | 6 | -------------------------------------------------------------------------------- /firstapp/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /03 notes/directives diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjundhav/Angular/master/03 notes/directives diagram.png -------------------------------------------------------------------------------- /FoodOrder_App/Food_order/src/app/components/partial/title/title.component.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: red; 3 | 4 | } 5 | -------------------------------------------------------------------------------- /FoodOrder_App/backend/src/.env: -------------------------------------------------------------------------------- 1 | MONGO_URI=mongodb+srv://mayuri:0PFyunXX03rHs0g5@cluster0.ffbgcmg.mongodb.net/cluster0 -------------------------------------------------------------------------------- /todoList/src/app/todo-list/task.ts: -------------------------------------------------------------------------------- 1 | export class ITask { 2 | 3 | description!:string[] 4 | done!:boolean 5 | } -------------------------------------------------------------------------------- /fb-login-page-routing/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /todoList/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 |Our homepage is Working
4 |My name is {{ name }}
4 |My project name is {{ title }}
5 |Contact No: {{mobile}}
5 |Email: {{email}}
6 |Address: {{address}}
7 |Input Decorator submited value: {{myvalue}}
4 |Todays Beverages is: {{beverages}}
4 | 5 | 6 | 7 |Change my color
2 |5 | Enter your email address and we'll send you an email with instructions to reset your password. 6 |
7 |using ngclass with string example
26 | 27 |Example using ng class as object
32 | 33 |Connect with friends and the world around you on Facebook.
14 | 33 | 34 |Connect with friends and the world around you on Facebook.
14 | 15 | 37 | 38 |