├── .babelrc ├── .bowerrc ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.yaml ├── bower.json ├── main.py ├── package.json ├── requirements.txt ├── static ├── elements │ ├── elements.html │ └── elements.vulcanized.html ├── favicon.png ├── images │ ├── default_img.png │ ├── facebook_signin.png │ ├── google_signin.png │ ├── homescreen144.png │ ├── homescreen192.png │ ├── homescreen48.png │ ├── homescreen72.png │ ├── homescreen96.png │ └── howto │ │ ├── add-second-account.png │ │ ├── auto-sign-in-with-2-accounts.png │ │ ├── auto-sign-in.png │ │ ├── fb_config.png │ │ ├── gsi_config.png │ │ ├── opt-in-to-smart-lock.png │ │ ├── save-password.png │ │ ├── sign-up.png │ │ └── the-first-sign-in.png ├── manifest.json └── scripts │ ├── app-cmp.js │ └── app.js └── templates └── index.html /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/.babelrc -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "static/bower_components/" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/app.yaml -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/bower.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/main.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/elements/elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/elements/elements.html -------------------------------------------------------------------------------- /static/elements/elements.vulcanized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/elements/elements.vulcanized.html -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/images/default_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/default_img.png -------------------------------------------------------------------------------- /static/images/facebook_signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/facebook_signin.png -------------------------------------------------------------------------------- /static/images/google_signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/google_signin.png -------------------------------------------------------------------------------- /static/images/homescreen144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/homescreen144.png -------------------------------------------------------------------------------- /static/images/homescreen192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/homescreen192.png -------------------------------------------------------------------------------- /static/images/homescreen48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/homescreen48.png -------------------------------------------------------------------------------- /static/images/homescreen72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/homescreen72.png -------------------------------------------------------------------------------- /static/images/homescreen96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/homescreen96.png -------------------------------------------------------------------------------- /static/images/howto/add-second-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/howto/add-second-account.png -------------------------------------------------------------------------------- /static/images/howto/auto-sign-in-with-2-accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/howto/auto-sign-in-with-2-accounts.png -------------------------------------------------------------------------------- /static/images/howto/auto-sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/howto/auto-sign-in.png -------------------------------------------------------------------------------- /static/images/howto/fb_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/howto/fb_config.png -------------------------------------------------------------------------------- /static/images/howto/gsi_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/howto/gsi_config.png -------------------------------------------------------------------------------- /static/images/howto/opt-in-to-smart-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/howto/opt-in-to-smart-lock.png -------------------------------------------------------------------------------- /static/images/howto/save-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/howto/save-password.png -------------------------------------------------------------------------------- /static/images/howto/sign-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/howto/sign-up.png -------------------------------------------------------------------------------- /static/images/howto/the-first-sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/images/howto/the-first-sign-in.png -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/scripts/app-cmp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/scripts/app-cmp.js -------------------------------------------------------------------------------- /static/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/static/scripts/app.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/credential-management-sample/HEAD/templates/index.html --------------------------------------------------------------------------------