├── LICENSE ├── api ├── .gitignore ├── db.js ├── package-lock.json ├── package.json └── server.js └── client ├── .gitignore ├── index.html ├── main.js ├── package-lock.json ├── package.json └── public └── vite.svg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/LICENSE -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/api/db.js -------------------------------------------------------------------------------- /api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/api/package-lock.json -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/api/package.json -------------------------------------------------------------------------------- /api/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/api/server.js -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/client/index.html -------------------------------------------------------------------------------- /client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/client/main.js -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/webauthn-basic-authentication/HEAD/client/public/vite.svg --------------------------------------------------------------------------------