├── .browserslistrc ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── README.md ├── angular.json ├── capacitor.config.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── ionic.config.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 │ ├── cards │ │ ├── cards-routing.module.ts │ │ ├── cards.module.ts │ │ ├── cards.page.html │ │ ├── cards.page.scss │ │ ├── cards.page.spec.ts │ │ └── cards.page.ts │ ├── films │ │ ├── films-routing.module.ts │ │ ├── films.module.ts │ │ ├── films.page.html │ │ ├── films.page.scss │ │ ├── films.page.spec.ts │ │ └── films.page.ts │ ├── home │ │ ├── home-routing.module.ts │ │ ├── home.module.ts │ │ ├── home.page.html │ │ ├── home.page.scss │ │ ├── home.page.spec.ts │ │ └── home.page.ts │ └── login │ │ ├── login-routing.module.ts │ │ ├── login.module.ts │ │ ├── login.page.html │ │ ├── login.page.scss │ │ ├── login.page.spec.ts │ │ └── login.page.ts ├── assets │ ├── icon │ │ └── favicon.png │ └── shapes.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── global.scss ├── index.html ├── main.ts ├── polyfills.ts ├── test.ts ├── theme │ └── variables.scss └── zone-flags.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/angular.json -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/ionic.config.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/cards/cards-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/cards/cards-routing.module.ts -------------------------------------------------------------------------------- /src/app/cards/cards.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/cards/cards.module.ts -------------------------------------------------------------------------------- /src/app/cards/cards.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/cards/cards.page.html -------------------------------------------------------------------------------- /src/app/cards/cards.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/cards/cards.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/cards/cards.page.spec.ts -------------------------------------------------------------------------------- /src/app/cards/cards.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/cards/cards.page.ts -------------------------------------------------------------------------------- /src/app/films/films-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/films/films-routing.module.ts -------------------------------------------------------------------------------- /src/app/films/films.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/films/films.module.ts -------------------------------------------------------------------------------- /src/app/films/films.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/films/films.page.html -------------------------------------------------------------------------------- /src/app/films/films.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/films/films.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/films/films.page.spec.ts -------------------------------------------------------------------------------- /src/app/films/films.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/films/films.page.ts -------------------------------------------------------------------------------- /src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/home/home.module.ts -------------------------------------------------------------------------------- /src/app/home/home.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/home/home.page.html -------------------------------------------------------------------------------- /src/app/home/home.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/home/home.page.scss -------------------------------------------------------------------------------- /src/app/home/home.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/home/home.page.spec.ts -------------------------------------------------------------------------------- /src/app/home/home.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/home/home.page.ts -------------------------------------------------------------------------------- /src/app/login/login-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/login/login-routing.module.ts -------------------------------------------------------------------------------- /src/app/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/login/login.module.ts -------------------------------------------------------------------------------- /src/app/login/login.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/login/login.page.html -------------------------------------------------------------------------------- /src/app/login/login.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/login/login.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/login/login.page.spec.ts -------------------------------------------------------------------------------- /src/app/login/login.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/app/login/login.page.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/assets/shapes.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/src/zone-flags.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marieemoiselle/ionicDemo/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------