├── .editorconfig ├── .gitattributes ├── .gitignore ├── @types └── webpack-loader-imports.d.ts ├── LICENSE ├── README.md ├── docs ├── _config.yml ├── _data │ ├── lib.yml │ └── product.yml ├── _includes │ ├── README.md │ ├── dpam-intro.md │ ├── header.html │ ├── logo.html │ ├── reqs │ │ ├── languages.md │ │ └── platforms.md │ └── shims │ │ ├── fetch.md │ │ ├── node-base64.md │ │ └── promise.md ├── _sass │ └── custom │ │ └── custom.scss ├── assets │ ├── BODP-Main-page.png │ ├── BODP-add-methods.png │ ├── BODP-sign-in.png │ ├── BODP-sign-up.png │ └── HID.png ├── build.md ├── configure.md ├── detail │ ├── index.md │ └── tokens │ │ ├── face │ │ ├── faceCaptureControl.md │ │ └── index.md │ │ └── index.md ├── index.md ├── infrastructure.dot ├── infrastructure.puml ├── infrastructure.svg ├── prereqs.md └── run.md ├── package.json ├── rollup.config.js ├── server ├── api.js ├── config.js └── index.js ├── src ├── application │ ├── app.html │ ├── app.js │ ├── app.module.ts │ ├── app.ts │ ├── common │ │ ├── index.ts │ │ └── statusAlert.ts │ ├── components │ │ ├── activityView │ │ │ ├── activityView.html │ │ │ └── activityView.ts │ │ ├── alert │ │ │ ├── alert.html │ │ │ └── alert.ts │ │ ├── faceCapture │ │ │ ├── faceCapture.html │ │ │ ├── faceCapture.ts │ │ │ └── models │ │ │ │ ├── face_landmark_68_model-shard1 │ │ │ │ ├── face_landmark_68_model-weights_manifest.json │ │ │ │ ├── face_landmark_68_tiny_model-shard1 │ │ │ │ ├── face_landmark_68_tiny_model-weights_manifest.json │ │ │ │ ├── tiny_face_detector_model-shard1 │ │ │ │ └── tiny_face_detector_model-weights_manifest.json │ │ ├── fields │ │ │ ├── password │ │ │ │ ├── password.html │ │ │ │ └── password.ts │ │ │ ├── text │ │ │ │ ├── text.html │ │ │ │ └── text.ts │ │ │ └── username │ │ │ │ ├── username.html │ │ │ │ └── username.ts │ │ ├── index.ts │ │ └── validators │ │ │ ├── mustMatch.ts │ │ │ └── mustNotMatch.ts │ ├── home │ │ ├── home.html │ │ ├── home.module.ts │ │ ├── home.routes.ts │ │ ├── home.ts │ │ ├── main │ │ │ ├── main.html │ │ │ └── main.ts │ │ └── welcome │ │ │ ├── img-box1.jpg │ │ │ ├── img-box2.jpg │ │ │ ├── img-box3.jpg │ │ │ ├── img-slider.jpg │ │ │ ├── welcome.html │ │ │ └── welcome.ts │ └── identity │ │ ├── consent │ │ ├── consent.html │ │ └── consent.ts │ │ ├── identity.service.ts │ │ ├── index.ts │ │ ├── menu │ │ ├── profileMenu.html │ │ └── profileMenu.ts │ │ ├── nav │ │ ├── profileNav.html │ │ └── profileNav.ts │ │ ├── profile │ │ ├── profile.html │ │ └── profile.ts │ │ ├── routes.ts │ │ ├── signin │ │ ├── signin.html │ │ └── signin.ts │ │ ├── signup │ │ ├── signup.html │ │ └── signup.ts │ │ ├── tokens │ │ ├── auth.module.ts │ │ ├── cards │ │ │ ├── cardsAuth.html │ │ │ ├── cardsAuth.ts │ │ │ ├── cardsChange.html │ │ │ ├── cardsChange.ts │ │ │ ├── contactlessCard │ │ │ │ ├── contactlessCardAuth.html │ │ │ │ ├── contactlessCardAuth.ts │ │ │ │ ├── contactlessCardChange.html │ │ │ │ └── contactlessCardChange.ts │ │ │ ├── proximityCard │ │ │ │ ├── proximityCardAuth.html │ │ │ │ ├── proximityCardAuth.ts │ │ │ │ ├── proximityCardChange.html │ │ │ │ └── proximityCardChange.ts │ │ │ └── smartCard │ │ │ │ ├── smartCardAuth.html │ │ │ │ ├── smartCardAuth.ts │ │ │ │ ├── smartCardChange.html │ │ │ │ └── smartCardChange.ts │ │ ├── configuration │ │ │ ├── credInfo.ts │ │ │ └── supportedCredentials.ts │ │ ├── credSelector │ │ │ ├── credSelector.html │ │ │ └── credSelector.ts │ │ ├── enroll.module.ts │ │ ├── face │ │ │ ├── faceAuth.html │ │ │ ├── faceAuth.ts │ │ │ ├── faceChange.html │ │ │ └── faceChange.ts │ │ ├── fingerprints │ │ │ ├── fingerprintsAuth.html │ │ │ ├── fingerprintsAuth.ts │ │ │ ├── fingerprintsChange.html │ │ │ ├── fingerprintsChange.ts │ │ │ └── images │ │ │ │ ├── error.png │ │ │ │ ├── success.png │ │ │ │ └── warning.png │ │ ├── images │ │ │ ├── credentials │ │ │ │ ├── bluetooth.png │ │ │ │ ├── cards.png │ │ │ │ ├── face.png │ │ │ │ ├── fido.png │ │ │ │ ├── fingerprints.png │ │ │ │ ├── oneTimePassword.png │ │ │ │ ├── password.png │ │ │ │ ├── pin.png │ │ │ │ └── recoveryQuestions.png │ │ │ ├── fingerprint icon success-prglt petr.png │ │ │ ├── fingerprint-icon wait.png │ │ │ ├── fingerprint-icon-blue wait.png │ │ │ └── fingerprint-icon-blue.png │ │ ├── otp │ │ │ ├── otpAuth.html │ │ │ ├── otpAuth.ts │ │ │ ├── otpChange.html │ │ │ └── otpChange.ts │ │ ├── password │ │ │ ├── passwordAuth.html │ │ │ ├── passwordAuth.ts │ │ │ ├── passwordChange.html │ │ │ └── passwordChange.ts │ │ ├── pin │ │ │ ├── pinAuth.html │ │ │ ├── pinAuth.ts │ │ │ ├── pinChange.html │ │ │ └── pinChange.ts │ │ ├── tokenAuth.ts │ │ ├── tokenEnroll.ts │ │ └── u2f │ │ │ ├── fidoAuth.html │ │ │ ├── fidoAuth.ts │ │ │ ├── fidoChange.html │ │ │ └── fidoChange.ts │ │ ├── user.service.ts │ │ ├── userCredentials │ │ ├── userCredentials.html │ │ └── userCredentials.ts │ │ └── userInfo │ │ ├── userInfo.html │ │ └── userInfo.ts ├── branding.scss ├── config │ ├── localization.ts │ ├── routes.ts │ └── server.ts ├── images │ ├── bank_1200_768_.jpg │ ├── favicon-1.ico │ ├── favicon.ico │ ├── grid-background.png │ └── logo.png ├── index.html ├── index.scss ├── index.ts ├── locales │ └── en.json └── modules │ └── WebSdk │ ├── index.d.ts │ └── index.js ├── tsconfig.json ├── tsconfig.typings.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.json linguist-language=JSON-with-Comments -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/.gitignore -------------------------------------------------------------------------------- /@types/webpack-loader-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/@types/webpack-loader-imports.d.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/lib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_data/lib.yml -------------------------------------------------------------------------------- /docs/_data/product.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_data/product.yml -------------------------------------------------------------------------------- /docs/_includes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_includes/README.md -------------------------------------------------------------------------------- /docs/_includes/dpam-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_includes/dpam-intro.md -------------------------------------------------------------------------------- /docs/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_includes/header.html -------------------------------------------------------------------------------- /docs/_includes/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_includes/logo.html -------------------------------------------------------------------------------- /docs/_includes/reqs/languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_includes/reqs/languages.md -------------------------------------------------------------------------------- /docs/_includes/reqs/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_includes/reqs/platforms.md -------------------------------------------------------------------------------- /docs/_includes/shims/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_includes/shims/fetch.md -------------------------------------------------------------------------------- /docs/_includes/shims/node-base64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_includes/shims/node-base64.md -------------------------------------------------------------------------------- /docs/_includes/shims/promise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_includes/shims/promise.md -------------------------------------------------------------------------------- /docs/_sass/custom/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/_sass/custom/custom.scss -------------------------------------------------------------------------------- /docs/assets/BODP-Main-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/assets/BODP-Main-page.png -------------------------------------------------------------------------------- /docs/assets/BODP-add-methods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/assets/BODP-add-methods.png -------------------------------------------------------------------------------- /docs/assets/BODP-sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/assets/BODP-sign-in.png -------------------------------------------------------------------------------- /docs/assets/BODP-sign-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/assets/BODP-sign-up.png -------------------------------------------------------------------------------- /docs/assets/HID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/assets/HID.png -------------------------------------------------------------------------------- /docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/build.md -------------------------------------------------------------------------------- /docs/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/configure.md -------------------------------------------------------------------------------- /docs/detail/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/detail/index.md -------------------------------------------------------------------------------- /docs/detail/tokens/face/faceCaptureControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/detail/tokens/face/faceCaptureControl.md -------------------------------------------------------------------------------- /docs/detail/tokens/face/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/detail/tokens/face/index.md -------------------------------------------------------------------------------- /docs/detail/tokens/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/detail/tokens/index.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/infrastructure.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/infrastructure.dot -------------------------------------------------------------------------------- /docs/infrastructure.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/infrastructure.puml -------------------------------------------------------------------------------- /docs/infrastructure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/infrastructure.svg -------------------------------------------------------------------------------- /docs/prereqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/prereqs.md -------------------------------------------------------------------------------- /docs/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/docs/run.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/rollup.config.js -------------------------------------------------------------------------------- /server/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/server/api.js -------------------------------------------------------------------------------- /server/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/server/config.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/server/index.js -------------------------------------------------------------------------------- /src/application/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/app.html -------------------------------------------------------------------------------- /src/application/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/app.js -------------------------------------------------------------------------------- /src/application/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/app.module.ts -------------------------------------------------------------------------------- /src/application/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/app.ts -------------------------------------------------------------------------------- /src/application/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './statusAlert'; 2 | -------------------------------------------------------------------------------- /src/application/common/statusAlert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/common/statusAlert.ts -------------------------------------------------------------------------------- /src/application/components/activityView/activityView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/activityView/activityView.html -------------------------------------------------------------------------------- /src/application/components/activityView/activityView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/activityView/activityView.ts -------------------------------------------------------------------------------- /src/application/components/alert/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/alert/alert.html -------------------------------------------------------------------------------- /src/application/components/alert/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/alert/alert.ts -------------------------------------------------------------------------------- /src/application/components/faceCapture/faceCapture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/faceCapture/faceCapture.html -------------------------------------------------------------------------------- /src/application/components/faceCapture/faceCapture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/faceCapture/faceCapture.ts -------------------------------------------------------------------------------- /src/application/components/faceCapture/models/face_landmark_68_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/faceCapture/models/face_landmark_68_model-shard1 -------------------------------------------------------------------------------- /src/application/components/faceCapture/models/face_landmark_68_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/faceCapture/models/face_landmark_68_model-weights_manifest.json -------------------------------------------------------------------------------- /src/application/components/faceCapture/models/face_landmark_68_tiny_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/faceCapture/models/face_landmark_68_tiny_model-shard1 -------------------------------------------------------------------------------- /src/application/components/faceCapture/models/face_landmark_68_tiny_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/faceCapture/models/face_landmark_68_tiny_model-weights_manifest.json -------------------------------------------------------------------------------- /src/application/components/faceCapture/models/tiny_face_detector_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/faceCapture/models/tiny_face_detector_model-shard1 -------------------------------------------------------------------------------- /src/application/components/faceCapture/models/tiny_face_detector_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/faceCapture/models/tiny_face_detector_model-weights_manifest.json -------------------------------------------------------------------------------- /src/application/components/fields/password/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/fields/password/password.html -------------------------------------------------------------------------------- /src/application/components/fields/password/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/fields/password/password.ts -------------------------------------------------------------------------------- /src/application/components/fields/text/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/fields/text/text.html -------------------------------------------------------------------------------- /src/application/components/fields/text/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/fields/text/text.ts -------------------------------------------------------------------------------- /src/application/components/fields/username/username.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/fields/username/username.html -------------------------------------------------------------------------------- /src/application/components/fields/username/username.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/fields/username/username.ts -------------------------------------------------------------------------------- /src/application/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/index.ts -------------------------------------------------------------------------------- /src/application/components/validators/mustMatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/validators/mustMatch.ts -------------------------------------------------------------------------------- /src/application/components/validators/mustNotMatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/components/validators/mustNotMatch.ts -------------------------------------------------------------------------------- /src/application/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/home.html -------------------------------------------------------------------------------- /src/application/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/home.module.ts -------------------------------------------------------------------------------- /src/application/home/home.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/home.routes.ts -------------------------------------------------------------------------------- /src/application/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/home.ts -------------------------------------------------------------------------------- /src/application/home/main/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/main/main.html -------------------------------------------------------------------------------- /src/application/home/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/main/main.ts -------------------------------------------------------------------------------- /src/application/home/welcome/img-box1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/welcome/img-box1.jpg -------------------------------------------------------------------------------- /src/application/home/welcome/img-box2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/welcome/img-box2.jpg -------------------------------------------------------------------------------- /src/application/home/welcome/img-box3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/welcome/img-box3.jpg -------------------------------------------------------------------------------- /src/application/home/welcome/img-slider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/welcome/img-slider.jpg -------------------------------------------------------------------------------- /src/application/home/welcome/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/welcome/welcome.html -------------------------------------------------------------------------------- /src/application/home/welcome/welcome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/home/welcome/welcome.ts -------------------------------------------------------------------------------- /src/application/identity/consent/consent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/consent/consent.html -------------------------------------------------------------------------------- /src/application/identity/consent/consent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/consent/consent.ts -------------------------------------------------------------------------------- /src/application/identity/identity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/identity.service.ts -------------------------------------------------------------------------------- /src/application/identity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/index.ts -------------------------------------------------------------------------------- /src/application/identity/menu/profileMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/menu/profileMenu.html -------------------------------------------------------------------------------- /src/application/identity/menu/profileMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/menu/profileMenu.ts -------------------------------------------------------------------------------- /src/application/identity/nav/profileNav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/nav/profileNav.html -------------------------------------------------------------------------------- /src/application/identity/nav/profileNav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/nav/profileNav.ts -------------------------------------------------------------------------------- /src/application/identity/profile/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/profile/profile.html -------------------------------------------------------------------------------- /src/application/identity/profile/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/profile/profile.ts -------------------------------------------------------------------------------- /src/application/identity/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/routes.ts -------------------------------------------------------------------------------- /src/application/identity/signin/signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/signin/signin.html -------------------------------------------------------------------------------- /src/application/identity/signin/signin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/signin/signin.ts -------------------------------------------------------------------------------- /src/application/identity/signup/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/signup/signup.html -------------------------------------------------------------------------------- /src/application/identity/signup/signup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/signup/signup.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/auth.module.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/cardsAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/cardsAuth.html -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/cardsAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/cardsAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/cardsChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/cardsChange.html -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/cardsChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/cardsChange.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/contactlessCard/contactlessCardAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/contactlessCard/contactlessCardAuth.html -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/contactlessCard/contactlessCardAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/contactlessCard/contactlessCardAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/contactlessCard/contactlessCardChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/contactlessCard/contactlessCardChange.html -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/contactlessCard/contactlessCardChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/contactlessCard/contactlessCardChange.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/proximityCard/proximityCardAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/proximityCard/proximityCardAuth.html -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/proximityCard/proximityCardAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/proximityCard/proximityCardAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/proximityCard/proximityCardChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/proximityCard/proximityCardChange.html -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/proximityCard/proximityCardChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/proximityCard/proximityCardChange.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/smartCard/smartCardAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/smartCard/smartCardAuth.html -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/smartCard/smartCardAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/smartCard/smartCardAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/smartCard/smartCardChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/smartCard/smartCardChange.html -------------------------------------------------------------------------------- /src/application/identity/tokens/cards/smartCard/smartCardChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/cards/smartCard/smartCardChange.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/configuration/credInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/configuration/credInfo.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/configuration/supportedCredentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/configuration/supportedCredentials.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/credSelector/credSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/credSelector/credSelector.html -------------------------------------------------------------------------------- /src/application/identity/tokens/credSelector/credSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/credSelector/credSelector.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/enroll.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/enroll.module.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/face/faceAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/face/faceAuth.html -------------------------------------------------------------------------------- /src/application/identity/tokens/face/faceAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/face/faceAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/face/faceChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/face/faceChange.html -------------------------------------------------------------------------------- /src/application/identity/tokens/face/faceChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/face/faceChange.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/fingerprints/fingerprintsAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/fingerprints/fingerprintsAuth.html -------------------------------------------------------------------------------- /src/application/identity/tokens/fingerprints/fingerprintsAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/fingerprints/fingerprintsAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/fingerprints/fingerprintsChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/fingerprints/fingerprintsChange.html -------------------------------------------------------------------------------- /src/application/identity/tokens/fingerprints/fingerprintsChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/fingerprints/fingerprintsChange.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/fingerprints/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/fingerprints/images/error.png -------------------------------------------------------------------------------- /src/application/identity/tokens/fingerprints/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/fingerprints/images/success.png -------------------------------------------------------------------------------- /src/application/identity/tokens/fingerprints/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/fingerprints/images/warning.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/credentials/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/credentials/bluetooth.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/credentials/cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/credentials/cards.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/credentials/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/credentials/face.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/credentials/fido.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/credentials/fido.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/credentials/fingerprints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/credentials/fingerprints.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/credentials/oneTimePassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/credentials/oneTimePassword.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/credentials/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/credentials/password.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/credentials/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/credentials/pin.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/credentials/recoveryQuestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/credentials/recoveryQuestions.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/fingerprint icon success-prglt petr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/fingerprint icon success-prglt petr.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/fingerprint-icon wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/fingerprint-icon wait.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/fingerprint-icon-blue wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/fingerprint-icon-blue wait.png -------------------------------------------------------------------------------- /src/application/identity/tokens/images/fingerprint-icon-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/images/fingerprint-icon-blue.png -------------------------------------------------------------------------------- /src/application/identity/tokens/otp/otpAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/otp/otpAuth.html -------------------------------------------------------------------------------- /src/application/identity/tokens/otp/otpAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/otp/otpAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/otp/otpChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/otp/otpChange.html -------------------------------------------------------------------------------- /src/application/identity/tokens/otp/otpChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/otp/otpChange.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/password/passwordAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/password/passwordAuth.html -------------------------------------------------------------------------------- /src/application/identity/tokens/password/passwordAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/password/passwordAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/password/passwordChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/password/passwordChange.html -------------------------------------------------------------------------------- /src/application/identity/tokens/password/passwordChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/password/passwordChange.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/pin/pinAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/pin/pinAuth.html -------------------------------------------------------------------------------- /src/application/identity/tokens/pin/pinAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/pin/pinAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/pin/pinChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/pin/pinChange.html -------------------------------------------------------------------------------- /src/application/identity/tokens/pin/pinChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/pin/pinChange.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/tokenAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/tokenAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/tokenEnroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/tokenEnroll.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/u2f/fidoAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/u2f/fidoAuth.html -------------------------------------------------------------------------------- /src/application/identity/tokens/u2f/fidoAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/u2f/fidoAuth.ts -------------------------------------------------------------------------------- /src/application/identity/tokens/u2f/fidoChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/u2f/fidoChange.html -------------------------------------------------------------------------------- /src/application/identity/tokens/u2f/fidoChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/tokens/u2f/fidoChange.ts -------------------------------------------------------------------------------- /src/application/identity/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/user.service.ts -------------------------------------------------------------------------------- /src/application/identity/userCredentials/userCredentials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/userCredentials/userCredentials.html -------------------------------------------------------------------------------- /src/application/identity/userCredentials/userCredentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/userCredentials/userCredentials.ts -------------------------------------------------------------------------------- /src/application/identity/userInfo/userInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/userInfo/userInfo.html -------------------------------------------------------------------------------- /src/application/identity/userInfo/userInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/application/identity/userInfo/userInfo.ts -------------------------------------------------------------------------------- /src/branding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/branding.scss -------------------------------------------------------------------------------- /src/config/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/config/localization.ts -------------------------------------------------------------------------------- /src/config/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/config/routes.ts -------------------------------------------------------------------------------- /src/config/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/config/server.ts -------------------------------------------------------------------------------- /src/images/bank_1200_768_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/images/bank_1200_768_.jpg -------------------------------------------------------------------------------- /src/images/favicon-1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/images/favicon-1.ico -------------------------------------------------------------------------------- /src/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/images/favicon.ico -------------------------------------------------------------------------------- /src/images/grid-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/images/grid-background.png -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/modules/WebSdk/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/modules/WebSdk/index.d.ts -------------------------------------------------------------------------------- /src/modules/WebSdk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/src/modules/WebSdk/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/tsconfig.typings.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidglobal/digitalpersona-sample-angularjs/HEAD/tslint.json --------------------------------------------------------------------------------