├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .nvmrc ├── README.md ├── angular.json ├── insomnia.json ├── karma.conf.js ├── package.json ├── postman.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── models │ │ └── todo.model.ts │ ├── modules │ │ ├── auth │ │ │ ├── auth-routing.module.ts │ │ │ ├── auth.module.ts │ │ │ ├── components │ │ │ │ ├── background │ │ │ │ │ ├── background.component.html │ │ │ │ │ └── background.component.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── forgot-password-form │ │ │ │ │ ├── forgot-password-form.component.html │ │ │ │ │ └── forgot-password-form.component.ts │ │ │ │ ├── header │ │ │ │ │ ├── header.component.html │ │ │ │ │ └── header.component.ts │ │ │ │ ├── login-form │ │ │ │ │ ├── login-form.component.html │ │ │ │ │ └── login-form.component.ts │ │ │ │ ├── recovery-form │ │ │ │ │ ├── recovery-form.component.html │ │ │ │ │ └── recovery-form.component.ts │ │ │ │ └── register-form │ │ │ │ │ ├── register-form.component.html │ │ │ │ │ └── register-form.component.ts │ │ │ └── pages │ │ │ │ ├── forgot-password │ │ │ │ ├── forgot-password.component.html │ │ │ │ └── forgot-password.component.ts │ │ │ │ ├── login │ │ │ │ ├── login.component.html │ │ │ │ └── login.component.ts │ │ │ │ ├── recovery │ │ │ │ ├── recovery.component.html │ │ │ │ └── recovery.component.ts │ │ │ │ └── register │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ ├── boards │ │ │ ├── boards-routing.module.ts │ │ │ ├── boards.module.ts │ │ │ ├── components │ │ │ │ └── todo-dialog │ │ │ │ │ ├── todo-dialog.component.html │ │ │ │ │ └── todo-dialog.component.ts │ │ │ └── pages │ │ │ │ ├── board │ │ │ │ ├── board.component.html │ │ │ │ └── board.component.ts │ │ │ │ └── boards │ │ │ │ ├── boards.component.html │ │ │ │ └── boards.component.ts │ │ ├── layout │ │ │ ├── components │ │ │ │ ├── layout │ │ │ │ │ ├── layout.component.html │ │ │ │ │ └── layout.component.ts │ │ │ │ └── navbar │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ ├── layout-routing.module.ts │ │ │ └── layout.module.ts │ │ ├── profile │ │ │ ├── pages │ │ │ │ └── profile │ │ │ │ │ ├── profile.component.html │ │ │ │ │ └── profile.component.ts │ │ │ ├── profile-routing.module.ts │ │ │ └── profile.module.ts │ │ ├── shared │ │ │ ├── components │ │ │ │ └── button │ │ │ │ │ ├── button.component.html │ │ │ │ │ └── button.component.ts │ │ │ └── shared.module.ts │ │ └── users │ │ │ ├── pages │ │ │ └── users-table │ │ │ │ ├── data-source.ts │ │ │ │ ├── users-table.component.html │ │ │ │ └── users-table.component.ts │ │ │ ├── users-routing.module.ts │ │ │ └── users.module.ts │ └── utils │ │ └── validators.ts ├── assets │ ├── .gitkeep │ ├── images │ │ └── logo │ │ │ ├── icon-contained-gradient-blue-trello.png │ │ │ ├── icon-contained-gradient-neutral-trello.png │ │ │ ├── icon-contained-gradient-white-trello.png │ │ │ ├── icon-gradient-blue-trello.png │ │ │ ├── icon-gradient-neutral-trello.png │ │ │ ├── icon-gradient-white-trello.png │ │ │ ├── logo-atlassian-gray.png │ │ │ ├── logo-gradient-blue-trello.png │ │ │ ├── logo-gradient-neutral-trello.png │ │ │ └── logo-gradient-white-trello.png │ └── svg │ │ ├── check-email.svg │ │ ├── login-bg-left.svg │ │ └── login-bg-rigth.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/angular.json -------------------------------------------------------------------------------- /insomnia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/insomnia.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/package.json -------------------------------------------------------------------------------- /postman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/postman.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/models/todo.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/models/todo.model.ts -------------------------------------------------------------------------------- /src/app/modules/auth/auth-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/auth-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/auth.module.ts -------------------------------------------------------------------------------- /src/app/modules/auth/components/background/background.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/background/background.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/components/background/background.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/background/background.component.ts -------------------------------------------------------------------------------- /src/app/modules/auth/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/modules/auth/components/forgot-password-form/forgot-password-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/forgot-password-form/forgot-password-form.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/components/forgot-password-form/forgot-password-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/forgot-password-form/forgot-password-form.component.ts -------------------------------------------------------------------------------- /src/app/modules/auth/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/modules/auth/components/login-form/login-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/login-form/login-form.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/components/login-form/login-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/login-form/login-form.component.ts -------------------------------------------------------------------------------- /src/app/modules/auth/components/recovery-form/recovery-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/recovery-form/recovery-form.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/components/recovery-form/recovery-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/recovery-form/recovery-form.component.ts -------------------------------------------------------------------------------- /src/app/modules/auth/components/register-form/register-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/register-form/register-form.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/components/register-form/register-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/components/register-form/register-form.component.ts -------------------------------------------------------------------------------- /src/app/modules/auth/pages/forgot-password/forgot-password.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/pages/forgot-password/forgot-password.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/pages/forgot-password/forgot-password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/pages/forgot-password/forgot-password.component.ts -------------------------------------------------------------------------------- /src/app/modules/auth/pages/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/pages/login/login.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/pages/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/pages/login/login.component.ts -------------------------------------------------------------------------------- /src/app/modules/auth/pages/recovery/recovery.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/pages/recovery/recovery.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/pages/recovery/recovery.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/pages/recovery/recovery.component.ts -------------------------------------------------------------------------------- /src/app/modules/auth/pages/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/pages/register/register.component.html -------------------------------------------------------------------------------- /src/app/modules/auth/pages/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/auth/pages/register/register.component.ts -------------------------------------------------------------------------------- /src/app/modules/boards/boards-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/boards/boards-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/boards/boards.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/boards/boards.module.ts -------------------------------------------------------------------------------- /src/app/modules/boards/components/todo-dialog/todo-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/boards/components/todo-dialog/todo-dialog.component.html -------------------------------------------------------------------------------- /src/app/modules/boards/components/todo-dialog/todo-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/boards/components/todo-dialog/todo-dialog.component.ts -------------------------------------------------------------------------------- /src/app/modules/boards/pages/board/board.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/boards/pages/board/board.component.html -------------------------------------------------------------------------------- /src/app/modules/boards/pages/board/board.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/boards/pages/board/board.component.ts -------------------------------------------------------------------------------- /src/app/modules/boards/pages/boards/boards.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/boards/pages/boards/boards.component.html -------------------------------------------------------------------------------- /src/app/modules/boards/pages/boards/boards.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/boards/pages/boards/boards.component.ts -------------------------------------------------------------------------------- /src/app/modules/layout/components/layout/layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/layout/components/layout/layout.component.html -------------------------------------------------------------------------------- /src/app/modules/layout/components/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/layout/components/layout/layout.component.ts -------------------------------------------------------------------------------- /src/app/modules/layout/components/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/layout/components/navbar/navbar.component.html -------------------------------------------------------------------------------- /src/app/modules/layout/components/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/layout/components/navbar/navbar.component.ts -------------------------------------------------------------------------------- /src/app/modules/layout/layout-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/layout/layout-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/layout/layout.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/layout/layout.module.ts -------------------------------------------------------------------------------- /src/app/modules/profile/pages/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/profile/pages/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/modules/profile/pages/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/profile/pages/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/modules/profile/profile-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/profile/profile-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/profile/profile.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/profile/profile.module.ts -------------------------------------------------------------------------------- /src/app/modules/shared/components/button/button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/shared/components/button/button.component.html -------------------------------------------------------------------------------- /src/app/modules/shared/components/button/button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/shared/components/button/button.component.ts -------------------------------------------------------------------------------- /src/app/modules/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/modules/users/pages/users-table/data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/users/pages/users-table/data-source.ts -------------------------------------------------------------------------------- /src/app/modules/users/pages/users-table/users-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/users/pages/users-table/users-table.component.html -------------------------------------------------------------------------------- /src/app/modules/users/pages/users-table/users-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/users/pages/users-table/users-table.component.ts -------------------------------------------------------------------------------- /src/app/modules/users/users-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/users/users-routing.module.ts -------------------------------------------------------------------------------- /src/app/modules/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/modules/users/users.module.ts -------------------------------------------------------------------------------- /src/app/utils/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/app/utils/validators.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/logo/icon-contained-gradient-blue-trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/images/logo/icon-contained-gradient-blue-trello.png -------------------------------------------------------------------------------- /src/assets/images/logo/icon-contained-gradient-neutral-trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/images/logo/icon-contained-gradient-neutral-trello.png -------------------------------------------------------------------------------- /src/assets/images/logo/icon-contained-gradient-white-trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/images/logo/icon-contained-gradient-white-trello.png -------------------------------------------------------------------------------- /src/assets/images/logo/icon-gradient-blue-trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/images/logo/icon-gradient-blue-trello.png -------------------------------------------------------------------------------- /src/assets/images/logo/icon-gradient-neutral-trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/images/logo/icon-gradient-neutral-trello.png -------------------------------------------------------------------------------- /src/assets/images/logo/icon-gradient-white-trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/images/logo/icon-gradient-white-trello.png -------------------------------------------------------------------------------- /src/assets/images/logo/logo-atlassian-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/images/logo/logo-atlassian-gray.png -------------------------------------------------------------------------------- /src/assets/images/logo/logo-gradient-blue-trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/images/logo/logo-gradient-blue-trello.png -------------------------------------------------------------------------------- /src/assets/images/logo/logo-gradient-neutral-trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/images/logo/logo-gradient-neutral-trello.png -------------------------------------------------------------------------------- /src/assets/images/logo/logo-gradient-white-trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/images/logo/logo-gradient-white-trello.png -------------------------------------------------------------------------------- /src/assets/svg/check-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/svg/check-email.svg -------------------------------------------------------------------------------- /src/assets/svg/login-bg-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/svg/login-bg-left.svg -------------------------------------------------------------------------------- /src/assets/svg/login-bg-rigth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/assets/svg/login-bg-rigth.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/src/test.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-angular-auth/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------