├── README.md ├── angular.json ├── firebase.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── login │ │ │ ├── login.component.css │ │ │ ├── login.component.html │ │ │ └── login.component.ts │ │ ├── main │ │ │ ├── main.component.css │ │ │ ├── main.component.html │ │ │ └── main.component.ts │ │ └── register │ │ │ ├── register.component.css │ │ │ ├── register.component.html │ │ │ └── register.component.ts │ └── services │ │ └── user.service.ts ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/angular.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/components/login/login.component.html -------------------------------------------------------------------------------- /src/app/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/components/login/login.component.ts -------------------------------------------------------------------------------- /src/app/components/main/main.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/components/main/main.component.html -------------------------------------------------------------------------------- /src/app/components/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/components/main/main.component.ts -------------------------------------------------------------------------------- /src/app/components/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/components/register/register.component.html -------------------------------------------------------------------------------- /src/app/components/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/components/register/register.component.ts -------------------------------------------------------------------------------- /src/app/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/app/services/user.service.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarajedeIdeas/CodePills-FIREBASE-authentication/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------