├── .browserslistrc ├── .editorconfig ├── .firebaserc ├── .gitignore ├── README.md ├── angular.json ├── firebase.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── landing │ │ │ ├── landing.component.css │ │ │ ├── landing.component.html │ │ │ ├── landing.component.spec.ts │ │ │ └── landing.component.ts │ │ ├── login │ │ │ ├── login.component.html │ │ │ ├── login.component.scss │ │ │ ├── login.component.spec.ts │ │ │ └── login.component.ts │ │ ├── profile │ │ │ ├── profile.component.css │ │ │ ├── profile.component.html │ │ │ ├── profile.component.spec.ts │ │ │ └── profile.component.ts │ │ └── sign-up │ │ │ ├── sign-up.component.html │ │ │ ├── sign-up.component.scss │ │ │ ├── sign-up.component.spec.ts │ │ │ └── sign-up.component.ts │ ├── models │ │ └── user.ts │ └── services │ │ ├── auth.service.spec.ts │ │ ├── auth.service.ts │ │ ├── image-upload.service.spec.ts │ │ ├── image-upload.service.ts │ │ ├── users.service.spec.ts │ │ └── users.service.ts ├── assets │ ├── .gitkeep │ └── images │ │ └── image-placeholder.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AngularSignUp 2 | -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/angular.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/firebase.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/components/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/components/landing/landing.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/landing/landing.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/landing/landing.component.html -------------------------------------------------------------------------------- /src/app/components/landing/landing.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/landing/landing.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/landing/landing.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/landing/landing.component.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/login/login.component.html -------------------------------------------------------------------------------- /src/app/components/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/login/login.component.scss -------------------------------------------------------------------------------- /src/app/components/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/login/login.component.ts -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/profile/profile.component.css -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/components/sign-up/sign-up.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/sign-up/sign-up.component.html -------------------------------------------------------------------------------- /src/app/components/sign-up/sign-up.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/sign-up/sign-up.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/sign-up/sign-up.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/sign-up/sign-up.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/components/sign-up/sign-up.component.ts -------------------------------------------------------------------------------- /src/app/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/models/user.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/services/auth.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/services/image-upload.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/services/image-upload.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/image-upload.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/services/image-upload.service.ts -------------------------------------------------------------------------------- /src/app/services/users.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/services/users.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/app/services/users.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/image-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/assets/images/image-placeholder.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisiszoaib/angular-sign-up/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------