django-auth-recovery-codes 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- django_auth_recovery_codes/__init__.py +0 -0
- django_auth_recovery_codes/admin.py +260 -0
- django_auth_recovery_codes/app_settings.py +42 -0
- django_auth_recovery_codes/apps.py +30 -0
- django_auth_recovery_codes/base_models.py +334 -0
- django_auth_recovery_codes/checks.py +265 -0
- django_auth_recovery_codes/conf.py +245 -0
- django_auth_recovery_codes/context_processors.py +6 -0
- django_auth_recovery_codes/enums.py +39 -0
- django_auth_recovery_codes/forms/__init__.py +0 -0
- django_auth_recovery_codes/forms/login_form.py +26 -0
- django_auth_recovery_codes/forms/schedule_form.py +49 -0
- django_auth_recovery_codes/helpers.py +225 -0
- django_auth_recovery_codes/loggers/__init__.py +0 -0
- django_auth_recovery_codes/loggers/logger_config.py +178 -0
- django_auth_recovery_codes/loggers/loggers.py +44 -0
- django_auth_recovery_codes/loggers/logging_utils.py +11 -0
- django_auth_recovery_codes/management/commands/__init__.py +0 -0
- django_auth_recovery_codes/management/commands/flush_tasks.py +55 -0
- django_auth_recovery_codes/migrations/0001_initial.py +240 -0
- django_auth_recovery_codes/migrations/__init__.py +0 -0
- django_auth_recovery_codes/models.py +2312 -0
- django_auth_recovery_codes/models_choices.py +10 -0
- django_auth_recovery_codes/signals.py +145 -0
- django_auth_recovery_codes/static/django_recovery_codes/css/css.css +1870 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/alerts.js +76 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/batchCardsHistory/batchCardElements.js +6 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/batchCardsHistory/batchCardUtils.js +22 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/batchCardsHistory/markCardAsDeleted.js +30 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/batchCardsHistory/updateBatchHistorySection.js +304 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/codesSetupVerifcation/generateSetupElement.js +196 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/codesSetupVerifcation/handleTestSetup.js +305 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/dashboard.js +347 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/fetch.js +190 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/form.js +53 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/generateBatchHistoryCard.js +201 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/generateButtons/generateButton.js +308 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/generateCodeActionButtons.js +266 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/generateTable.js +221 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/appMessages.js +74 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/formUtils.js +44 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleButtonAlertClicker.js +174 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleCodeDelete.js +338 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleCodeGeneration.js +703 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleDownload.js +310 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleEmail.js +160 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleInvalidation.js +170 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handleTestCodeVerificationTest.js +106 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/handlers.js +45 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/helpers/tableUtils.js +193 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/logger.js +27 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/login/login.js +106 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/messages/enqueueMessages.js +70 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/messages/message.js +89 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/security/csrf.js +17 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/sideMenu/toggleSideBar.js +148 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/specialChars.js +72 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/state/appStateManager.js +120 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/state/config.js +18 -0
- django_auth_recovery_codes/static/django_recovery_codes/js/utils.js +655 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/all.css +10651 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/all.min.css +9 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/brands.css +2219 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/brands.min.css +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/fontawesome.css +8349 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/fontawesome.min.css +8 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/regular.css +31 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/regular.min.css +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/solid.css +31 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/solid.min.css +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/svg-with-js.css +554 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/svg-with-js.min.css +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/svg.css +182 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/svg.min.css +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/v4-font-face.css +27 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/v4-font-face.min.css +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/v4-shims.css +2818 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/v4-shims.min.css +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/v5-font-face.css +23 -0
- django_auth_recovery_codes/static/vendor/fontawesome/css/v5-font-face.min.css +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/all.js +7709 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/all.min.js +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/brands.js +1187 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/brands.min.js +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/conflict-detection.js +1435 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/conflict-detection.min.js +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/fontawesome.js +3613 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/fontawesome.min.js +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/regular.js +843 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/regular.min.js +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/solid.js +2081 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/solid.min.js +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/v4-shims.js +647 -0
- django_auth_recovery_codes/static/vendor/fontawesome/js/v4-shims.min.js +6 -0
- django_auth_recovery_codes/static/vendor/fontawesome/metadata/categories.yml +3118 -0
- django_auth_recovery_codes/static/vendor/fontawesome/metadata/icon-families.json +119719 -0
- django_auth_recovery_codes/static/vendor/fontawesome/metadata/icon-families.yml +57326 -0
- django_auth_recovery_codes/static/vendor/fontawesome/metadata/icons.json +97424 -0
- django_auth_recovery_codes/static/vendor/fontawesome/metadata/icons.yml +47223 -0
- django_auth_recovery_codes/static/vendor/fontawesome/metadata/shims.json +4052 -0
- django_auth_recovery_codes/static/vendor/fontawesome/metadata/shims.yml +646 -0
- django_auth_recovery_codes/static/vendor/fontawesome/metadata/sponsors.yml +1493 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_animated.scss +150 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_bordered.scss +24 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_core.scss +29 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_fa.scss +3 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_functions.scss +8 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_icons.scss +15 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_list.scss +19 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_mixins.scss +28 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_pulled.scss +15 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_rotated-flipped.scss +32 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_shims.scss +2193 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_sizing.scss +18 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_stacked.scss +33 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_variables.scss +5130 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/_widths.scss +12 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/brands.scss +45 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/fontawesome.scss +18 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/regular.scss +51 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/solid.scss +51 -0
- django_auth_recovery_codes/static/vendor/fontawesome/scss/v4-shims.scss +11 -0
- django_auth_recovery_codes/static/vendor/fontawesome/sprites/brands.svg +1547 -0
- django_auth_recovery_codes/static/vendor/fontawesome/sprites/regular.svg +515 -0
- django_auth_recovery_codes/static/vendor/fontawesome/sprites/solid.svg +4229 -0
- django_auth_recovery_codes/static/vendor/fontawesome/sprites-full/brands.svg +1547 -0
- django_auth_recovery_codes/static/vendor/fontawesome/sprites-full/regular.svg +515 -0
- django_auth_recovery_codes/static/vendor/fontawesome/sprites-full/solid.svg +4229 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/11ty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/42-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/500px.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/accessible-icon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/accusoft.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/adn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/adversal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/affiliatetheme.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/airbnb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/algolia.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/alipay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/amazon-pay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/amazon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/amilia.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/android.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/angellist.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/angrycreative.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/angular.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/app-store-ios.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/app-store.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/apper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/apple-pay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/apple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/artstation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/asymmetrik.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/atlassian.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/audible.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/autoprefixer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/avianex.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/aviato.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/aws.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bandcamp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/battle-net.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/behance-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/behance.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bilibili.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bimobject.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bitbucket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bitcoin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bity.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/black-tie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/blackberry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/blogger-b.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/blogger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bluesky.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bluetooth-b.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bluetooth.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bootstrap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/bots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/brave-reverse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/brave.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/btc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/buffer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/buromobelexperte.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/buy-n-large.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/buysellads.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/canadian-maple-leaf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cash-app.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-amazon-pay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-amex.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-apple-pay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-diners-club.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-discover.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-jcb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-mastercard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-paypal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-stripe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cc-visa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/centercode.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/centos.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/chrome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/chromecast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cloudflare.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cloudscale.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cloudsmith.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cloudversify.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cmplid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/codepen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/codiepie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/confluence.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/connectdevelop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/contao.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cotton-bureau.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cpanel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-by.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-nc-eu.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-nc-jp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-nc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-nd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-pd-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-pd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-remix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-sa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-sampling-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-sampling.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-share.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons-zero.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/creative-commons.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/critical-role.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/css.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/css3-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/css3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/cuttlefish.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/d-and-d-beyond.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/d-and-d.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dailymotion.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dart-lang.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dashcube.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/debian.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/deezer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/delicious.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/deploydog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/deskpro.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dev.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/deviantart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dhl.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/diaspora.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/digg.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/digital-ocean.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/discord.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/discourse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/disqus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dochub.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/docker.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/draft2digital.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dribbble-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dribbble.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dropbox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/drupal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/duolingo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/dyalog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/earlybirds.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ebay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/edge-legacy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/edge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/elementor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/eleventy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ello.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ember.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/empire.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/envira.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/erlang.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ethereum.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/etsy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/evernote.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/expeditedssl.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/facebook-f.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/facebook-messenger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/facebook-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/facebook.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fantasy-flight-games.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fedex.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fedora.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/figma.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/files-pinwheel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/firefox-browser.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/firefox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/first-order-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/first-order.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/firstdraft.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/flickr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/flipboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/flutter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fly.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/font-awesome-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/font-awesome-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/font-awesome-logo-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/font-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fonticons-fi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fonticons.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fort-awesome-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fort-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/forumbee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/foursquare.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/free-code-camp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/freebsd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/fulcrum.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/galactic-republic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/galactic-senate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/get-pocket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gg-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gg.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/git-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/git-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/git.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/github-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/github-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/github.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gitkraken.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gitlab-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gitlab.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gitter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/glide-g.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/glide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gofore.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/golang.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/goodreads-g.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/goodreads.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-drive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-pay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-play.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-plus-g.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-plus-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-scholar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google-wallet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/google.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gratipay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/grav.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gripfire.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/grunt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/guilded.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/gulp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hacker-news-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hacker-news.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hackerrank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hashnode.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hips.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hire-a-helper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hooli.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hornbill.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hotjar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/houzz.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/html5.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/hubspot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ideal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/imdb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/innosoft.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/instagram-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/instagram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/instalod.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/intercom.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/internet-explorer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/invision.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ioxhost.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/itch-io.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/itunes-note.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/itunes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/java.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/jedi-order.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/jenkins.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/jira.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/joget.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/joomla.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/js-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/js.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/jsfiddle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/jxl.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/kaggle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/kakao-talk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/keybase.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/keycdn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/kickstarter-k.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/kickstarter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/korvue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/laravel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/lastfm-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/lastfm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/leanpub.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/less.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/letterboxd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/linkedin-in.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/linkedin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/linktree.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/linode.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/linux.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/lumon-drop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/lumon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/lyft.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/magento.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mailchimp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mandalorian.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/markdown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mastodon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/maxcdn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mdb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/medapps.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/medium-m.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/medium.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/medrt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/meetup.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/megaport.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mendeley.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/meta.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/microblog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/microsoft.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mintbit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mixcloud.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mixer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/mizuni.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/modx.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/monero.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/napster.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/neos.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/nfc-directional.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/nfc-symbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/nimblr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/node-js.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/node.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/notion.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/npm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ns8.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/nutritionix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/octopus-deploy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/odnoklassniki-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/odnoklassniki.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/odysee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/old-republic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/openai.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/opencart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/openid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/opensuse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/opera.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/optin-monster.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/orcid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/osi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/padlet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/page4.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pagelines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/palfed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pandora.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/patreon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/paypal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/perbyte.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/periscope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/phabricator.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/phoenix-framework.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/phoenix-squadron.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/php.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pied-piper-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pied-piper-hat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pied-piper-pp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pied-piper-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pied-piper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pinterest-p.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pinterest-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pinterest.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pixelfed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pixiv.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/playstation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/product-hunt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/pushed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/python.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/qq.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/quinscape.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/quora.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/r-project.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/raspberry-pi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ravelry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/react.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/reacteurope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/readme.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rebel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/red-river.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/reddit-alien.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/reddit-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/reddit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/redhat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rendact.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/renren.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/replyd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/researchgate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/resolving.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rev.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rocketchat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rockrms.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/rust.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/safari.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/salesforce.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/schlix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/screenpal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/scribd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/searchengin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sellcast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sellsy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/servicestack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/shirtsinbulk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/shoelace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/shopify.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/shopware.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/signal-messenger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/simplybuilt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sistrix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sith.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sitrox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sketch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/skyatlas.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/skype.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/slack-hash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/slack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/slideshare.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/snapchat-ghost.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/snapchat-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/snapchat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/soundcloud.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sourcetree.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/space-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/speakap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/speaker-deck.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/spotify.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-behance.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-bluesky.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-dribbble.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-facebook.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-figma.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-font-awesome-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-font-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-git.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-github.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-gitlab.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-google-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-hacker-news.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-instagram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-js.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-kickstarter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-lastfm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-letterboxd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-linkedin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-odnoklassniki.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-pied-piper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-pinterest.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-reddit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-snapchat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-steam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-threads.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-tumblr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-twitter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-upwork.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-viadeo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-vimeo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-web-awesome-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-web-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-whatsapp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-x-twitter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-xing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/square-youtube.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/squarespace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stack-exchange.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stack-overflow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stackpath.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/staylinked.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/steam-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/steam-symbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/steam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/sticker-mule.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/strava.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stripe-s.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stripe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stubber.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/studiovinari.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stumbleupon-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/stumbleupon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/superpowers.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/supple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/suse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/swift.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/symfony.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/teamspeak.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/telegram-plane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/telegram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tencent-weibo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tex.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/the-red-yeti.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/themeco.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/themeisle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/think-peaks.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/threads.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tidal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tiktok.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/trade-federation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/trello.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tumblr-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/tumblr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/twitch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/twitter-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/twitter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/typo3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/uber.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ubuntu.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/uikit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/umbraco.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/uncharted.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/uniregistry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/unity.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/unsplash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/untappd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ups.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/upwork.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/usb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/usps.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/ussunnah.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vaadin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/viacoin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/viadeo-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/viadeo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/viber.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vimeo-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vimeo-v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vimeo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vine.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vnv.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vsco.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/vuejs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/w3c.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/watchman-monitoring.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/waze.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/web-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/webflow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/weebly.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/weibo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/weixin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/whatsapp-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/whatsapp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/whmcs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wikipedia-w.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/windows.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wirsindhandwerk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wizards-of-the-coast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wodu.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wolf-pack-battalion.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wordpress-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wordpress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wpbeginner.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wpexplorer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wpforms.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wpressr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/wsh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/x-twitter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/xbox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/xing-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/xing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/y-combinator.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yahoo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yammer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yandex-international.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yandex.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yarn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yelp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/yoast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/youtube-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/youtube.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/brands/zhihu.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/address-book.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/address-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/alarm-clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/angry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/arrow-alt-circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/arrow-alt-circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/arrow-alt-circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/arrow-alt-circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/bar-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/bell-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/bell.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/bookmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/building.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-days.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/calendar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/camera-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/camera.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/caret-square-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/caret-square-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/caret-square-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/caret-square-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chart-bar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/check-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/check-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-bishop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-king.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-knight.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-pawn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-queen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/chess-rook.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-dot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-pause.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-play.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-stop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/clipboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/clock-four.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/clone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/closed-captioning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/cloud.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/comment-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/comment-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/comment.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/commenting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/comments.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/compass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/contact-book.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/contact-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/copy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/copyright.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/credit-card-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/credit-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/dizzy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/dot-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/drivers-license.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/edit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/envelope-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/envelope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/eye-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/eye.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-angry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-dizzy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-flushed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-frown-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-frown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grimace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-beam-sweat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-hearts.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-squint-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-stars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-tongue-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-tongue-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-tongue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-grin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-kiss-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-kiss-wink-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-kiss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-laugh-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-laugh-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-laugh-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-laugh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-meh-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-meh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-rolling-eyes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-sad-cry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-sad-tear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-smile-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-smile-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-smile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-surprise.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/face-tired.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-archive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-audio.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-clipboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-code.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-excel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-image.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-pdf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-powerpoint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-text.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-video.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-word.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file-zipper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/file.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/floppy-disk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/flushed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/folder-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/folder-closed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/folder-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/folder.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/font-awesome-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/font-awesome-logo-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/font-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/frown-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/frown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/futbol-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/futbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/gem.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grimace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-beam-sweat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-hearts.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-squint-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-stars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-tongue-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-tongue-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-tongue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/grin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-back-fist.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-lizard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-paper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-peace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-point-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-point-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-point-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-point-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-pointer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-rock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-scissors.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand-spock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hand.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/handshake-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/handshake-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/handshake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hard-drive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hdd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/headphones-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/headphones-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/headphones.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/home-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/home-lg-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/home.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hospital-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hospital-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hospital.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hourglass-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hourglass-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hourglass-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/hourglass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/house.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/id-badge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/id-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/image.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/images.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/keyboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/kiss-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/kiss-wink-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/kiss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/laugh-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/laugh-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/laugh-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/laugh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/lemon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/life-ring.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/lightbulb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/list-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/map.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/meh-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/meh-rolling-eyes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/meh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/message.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/minus-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/money-bill-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/money-bill-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/moon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/newspaper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/note-sticky.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/object-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/object-ungroup.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/paper-plane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/paste.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/pause-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/pen-to-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/play-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/plus-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/question-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/rectangle-list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/rectangle-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/rectangle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/registered.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/sad-cry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/sad-tear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/save.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/share-from-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/share-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/smile-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/smile-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/smile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/snowflake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/soccer-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-caret-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-caret-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-caret-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-caret-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/star-half-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/star-half-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/star-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/star.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/sticky-note.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/stop-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/sun.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/surprise.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/thumbs-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/thumbs-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/times-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/times-rectangle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/tired.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/trash-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/trash-can.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/truck.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/user-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/user-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/user-large.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/vcard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/window-close.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/window-maximize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/window-minimize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/window-restore.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/regular/xmark-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/0.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/4.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/5.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/6.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/7.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/8.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/9.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/a.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ad.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/add.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/address-book.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/address-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/adjust.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/air-freshener.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/alarm-clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/align-center.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/align-justify.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/align-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/align-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/allergies.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ambulance.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/american-sign-language-interpreting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/anchor-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/anchor-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/anchor-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/anchor-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/anchor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-double-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-double-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-double-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-double-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angles-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angles-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angles-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angles-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/angry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ankh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/apple-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/apple-whole.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/archive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/archway.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/area-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-alt-circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-alt-circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-alt-circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-alt-circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-1-9.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-9-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-a-z.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-short-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-up-across-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-up-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-wide-short.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down-z-a.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-left-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-left-rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-pointer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-arrow-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-from-bracket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-from-file.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-to-bracket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-to-city.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right-to-file.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-rotate-back.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-rotate-backward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-rotate-forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-rotate-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-rotate-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-trend-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-trend-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-turn-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-turn-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-1-9.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-9-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-a-z.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-from-bracket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-from-ground-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-from-water-pump.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-right-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-right-from-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-short-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-wide-short.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up-z-a.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-alt-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-alt-v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-down-to-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-down-to-people.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-left-right-to-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-spin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-split-up-and-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-to-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-to-dot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-to-eye.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-turn-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-turn-to-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-up-down-left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-up-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-up-to-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows-v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/arrows.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/asl-interpreting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/assistive-listening-systems.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/asterisk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/at.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/atlas.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/atom.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/audio-description.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/austral-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/automobile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/award.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/b.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baby-carriage.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baby.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/backspace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/backward-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/backward-step.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/backward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bacon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bacteria.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bacterium.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bag-shopping.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bahai.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baht-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/balance-scale-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/balance-scale-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/balance-scale.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ban-smoking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ban.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/band-aid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bandage.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bangladeshi-taka-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bar-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/barcode.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bars-progress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bars-staggered.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baseball-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baseball-bat-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/baseball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/basket-shopping.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/basketball-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/basketball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bath.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bathtub.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-0.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-4.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-5.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-car.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-quarter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery-three-quarters.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/battery.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bed-pulse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/beer-mug-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/beer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bell-concierge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bell-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bell.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bezier-curve.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bible.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bicycle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/biking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/binoculars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/biohazard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/birthday-cake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bitcoin-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/blackboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/blender-phone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/blender.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/blind.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/blog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bold.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bolt-lightning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bomb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bong.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-atlas.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-bible.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-bookmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-dead.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-journal-whills.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-open-reader.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-quran.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-reader.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-skull.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book-tanakh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/book.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bookmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/border-all.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/border-none.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/border-style.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/border-top-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bore-hole.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bottle-droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bottle-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bowl-food.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bowl-rice.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bowling-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/box-archive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/box-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/box-tissue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/box.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/boxes-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/boxes-packing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/boxes-stacked.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/boxes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/braille.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/brain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/brazilian-real-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bread-slice.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bridge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/briefcase-clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/briefcase-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/briefcase.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/broadcast-tower.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/broom-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/broom.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/brush.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bucket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bug-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bug.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bugs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-circle-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-columns.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-ngo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-shield.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-un.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building-wheat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/building.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bullhorn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bullseye.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/burger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/burn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bus-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bus-side.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bus-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/bus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/business-time.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/c.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cab.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cable-car.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cake-candles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calculator.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-day.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-days.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-week.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/calendar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/camera-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/camera-retro.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/camera-rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/camera.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/campground.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cancel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/candy-cane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cannabis.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/capsules.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-battery.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-crash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-on.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-rear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-side.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car-tunnel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/car.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caravan.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-square-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-square-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-square-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-square-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/caret-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/carriage-baby.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/carrot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cart-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cart-flatbed-suitcase.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cart-flatbed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cart-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cart-shopping.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cash-register.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cedi-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cent-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/certificate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chain-broken.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chain-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chair.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chalkboard-teacher.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chalkboard-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chalkboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/champagne-glasses.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/charging-station.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-area.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-bar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-column.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-diagram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-gantt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-pie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chart-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/check-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/check-double.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/check-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/check-to-slot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cheese.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-bishop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-board.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-king.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-knight.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-pawn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-queen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess-rook.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chess.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/chevron-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/child-combatant.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/child-dress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/child-reaching.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/child-rifle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/child.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/children.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/church.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-arrow-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-chevron-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-chevron-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-chevron-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-chevron-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-dollar-to-slot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-dot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-half-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-info.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-nodes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-notch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-pause.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-play.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-radiation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-stop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/city.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clapperboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clinic-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clipboard-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clipboard-list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clipboard-question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clipboard-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clipboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clock-four.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clock-rotate-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/close.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/closed-captioning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-download-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-download.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-meatball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-moon-rain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-moon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-rain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-showers-heavy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-showers-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-sun-rain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-sun.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-upload-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud-upload.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cloud.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/clover.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cny.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cocktail.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-branch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-commit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-compare.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-fork.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-merge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code-pull-request.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/code.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/coffee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cogs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/coins.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/colon-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/columns.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-nodes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment-sms.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comment.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/commenting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comments-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/comments.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compact-disc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compass-drafting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compress-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compress-arrows-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/compress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/computer-mouse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/computer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/concierge-bell.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/contact-book.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/contact-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cookie-bite.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cookie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/copy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/copyright.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/couch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/credit-card-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/credit-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crop-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crop-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cross.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crosshairs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/crutch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cruzeiro-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cube.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cubes-stacked.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cubes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cut.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/cutlery.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/d.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dashboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/database.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/deaf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/deafness.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dedent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/delete-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/democrat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/desktop-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/desktop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dharmachakra.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diagnoses.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diagram-next.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diagram-predecessor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diagram-project.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diagram-successor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diamond-turn-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/diamond.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-d20.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-d6.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-five.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-four.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-one.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-six.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-three.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice-two.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dice.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/digging.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/digital-tachograph.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/directions.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/disease.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/display.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/divide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dizzy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dna.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dollar-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dolly-box.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dolly-flatbed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dolly.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/donate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dong-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/door-closed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/door-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dot-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dove.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/down-left-and-up-right-to-center.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/down-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/download.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/drafting-compass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dragon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/draw-polygon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/drivers-license.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/droplet-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/drum-steelpan.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/drum.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/drumstick-bite.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dumbbell.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dumpster-fire.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dumpster.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/dungeon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/e.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ear-deaf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ear-listen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-africa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-america.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-americas.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-asia.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-europe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth-oceania.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/earth.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/edit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/egg.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eject.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/elevator.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ellipsis-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ellipsis-v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ellipsis-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ellipsis.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelope-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelope-open-text.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelope-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelope-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/envelopes-bulk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/equals.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eraser.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ethernet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eur.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/euro-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/euro.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/exchange-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/exchange.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/exclamation-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/exclamation-triangle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/expand-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/expand-arrows-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/expand.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/explosion.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/external-link-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/external-link-square-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/external-link-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/external-link.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eye-dropper-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eye-dropper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eye-low-vision.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eye-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eye.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/eyedropper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/f.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-angry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-dizzy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-flushed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-frown-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-frown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grimace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-beam-sweat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-hearts.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-squint-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-stars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-tongue-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-tongue-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-tongue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-grin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-kiss-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-kiss-wink-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-kiss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-laugh-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-laugh-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-laugh-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-laugh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-meh-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-meh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-rolling-eyes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-sad-cry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-sad-tear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-smile-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-smile-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-smile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-surprise.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/face-tired.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fan.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fast-backward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fast-forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/faucet-drip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/faucet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fax.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/feather-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/feather-pointed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/feather.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/feed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/female.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ferry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fighter-jet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-archive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-audio.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-clipboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-code.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-contract.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-csv.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-download.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-edit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-excel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-export.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-fragment.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-half-dashed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-image.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-import.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-invoice-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-invoice.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-medical-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-pdf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-pen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-powerpoint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-prescription.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-shield.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-signature.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-text.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-upload.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-video.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-waveform.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-word.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file-zipper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/file.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fill-drip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fill.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/film-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/film-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/film.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/filter-circle-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/filter-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/filter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fingerprint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire-burner.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire-extinguisher.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire-flame-curved.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire-flame-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fire.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/first-aid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fish-fins.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fish.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/fist-raised.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flag-checkered.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flag-usa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flask-vial.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flask.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/floppy-disk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/florin-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/flushed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-closed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder-tree.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/folder.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/font-awesome-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/font-awesome-logo-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/font-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/font.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/football-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/football.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/forward-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/forward-step.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/franc-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/frog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/frown-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/frown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/funnel-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/futbol-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/futbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/g.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gamepad.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gas-pump.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge-high.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge-med.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge-simple-high.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge-simple-med.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gauge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gavel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gbp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gem.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/genderless.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ghost.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gift.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gifts.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-cheers.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-martini-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-martini.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-water-droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glass-whiskey.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/glasses.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe-africa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe-americas.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe-asia.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe-europe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe-oceania.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/globe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/golf-ball-tee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/golf-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gopuram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/graduation-cap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/greater-than-equal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/greater-than.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grid-horizontal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grid-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grimace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-beam-sweat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-hearts.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-squint-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-stars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-tongue-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-tongue-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-tongue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grip-horizontal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grip-lines-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grip-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grip-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/grip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/group-arrows-rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/guarani-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/guitar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/gun.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/h-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hamburger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hammer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hamsa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-back-fist.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-fist.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-hand.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-usd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-holding.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-lizard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-middle-finger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-paper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-peace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-point-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-point-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-point-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-point-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-pointer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-rock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-scissors.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-sparkles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand-spock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hand.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handcuffs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-american-sign-language-interpreting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-asl-interpreting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-bound.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-bubbles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-clapping.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-helping.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-holding-child.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-holding-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-holding.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-praying.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands-wash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hands.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-alt-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-angle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-simple-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/handshake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hanukiah.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hard-drive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hard-hat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hard-of-hearing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hashtag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hat-cowboy-side.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hat-cowboy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hat-hard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hat-wizard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/haykal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hdd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/head-side-cough-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/head-side-cough.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/head-side-mask.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/head-side-virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/header.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heading.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/headphones-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/headphones-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/headphones.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/headset.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-broken.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-crack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-music-camera-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart-pulse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heartbeat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/helicopter-symbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/helicopter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/helmet-safety.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/helmet-un.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/heptagon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hexagon-nodes-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hexagon-nodes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hexagon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/highlighter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hiking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hill-avalanche.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hill-rockslide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hippo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/history.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hockey-puck.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/holly-berry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/home-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/home-lg-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/home-lg.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/home-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/home.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/horse-head.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/horse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hospital-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hospital-symbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hospital-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hospital-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hospital.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hot-tub-person.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hot-tub.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hotdog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hotel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-end.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass-start.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hourglass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-chimney-crack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-chimney-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-chimney-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-chimney-window.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-chimney.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-crack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-damage.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-fire.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-flood-water-circle-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-flood-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-laptop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-medical-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-medical-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-medical-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-medical-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-signal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-tsunami.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/house.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hryvnia-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hryvnia.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/hurricane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/i-cursor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/i.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ice-cream.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/icicles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/icons.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/id-badge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/id-card-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/id-card-clip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/id-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/igloo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ils.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/image-portrait.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/image.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/images.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/inbox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/indent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/indian-rupee-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/indian-rupee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/industry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/infinity.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/info-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/info.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/inr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/institution.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/italic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/j.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jar-wheat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jedi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jet-fighter-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jet-fighter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/joint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/journal-whills.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jpy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/jug-detergent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/k.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kaaba.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/key.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/keyboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/khanda.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kip-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kiss-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kiss-wink-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kiss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kit-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kitchen-set.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/kiwi-bird.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/krw.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/l.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ladder-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/land-mine-on.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/landmark-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/landmark-dome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/landmark-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/landmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/language.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laptop-code.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laptop-file.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laptop-house.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laptop-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laptop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lari-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laugh-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laugh-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laugh-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/laugh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/layer-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/leaf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/left-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/legal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lemon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/less-than-equal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/less-than.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/level-down-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/level-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/level-up-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/level-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/life-ring.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lightbulb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/line-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lines-leaning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/link-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/link.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lira-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-1-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-numeric.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-ol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-squares.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list-ul.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/litecoin-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location-arrow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location-crosshairs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location-dot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location-pin-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location-pin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/location.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lock-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/locust.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-alt-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-alt-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-alt-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-alt-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/long-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/low-vision.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/luggage-cart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lungs-virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/lungs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/m.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magic-wand-sparkles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-location.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/magnifying-glass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mail-bulk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mail-forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mail-reply-all.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mail-reply.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/male.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/manat-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-location-dot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-location.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-marked-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-marked.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-marker-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-marker.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-pin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map-signs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/map.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/marker.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-and-venus-burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-and-venus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-double.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-stroke-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-stroke-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-stroke-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-stroke-v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/martini-glass-citrus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/martini-glass-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/martini-glass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mask-face.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mask-ventilator.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mask.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/masks-theater.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mattress-pillow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/maximize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/medal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/medkit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/meh-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/meh-rolling-eyes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/meh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/memory.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/menorah.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mercury.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/message.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/meteor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microchip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone-alt-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone-lines-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microphone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/microscope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mill-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/minimize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/minus-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/minus-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mitten.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-android-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-android.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-button.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-phone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-retro.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-screen-button.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-screen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile-vibrate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mobile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-1-wave.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-transfer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-trend-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-wave-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-wave.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill-wheat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bill.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-bills.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-check-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-check-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/money-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/monument.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/moon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mortar-board.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mortar-pestle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mosque.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mosquito-net.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mosquito.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/motorcycle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mound.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mountain-city.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mountain-sun.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mountain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mouse-pointer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mouse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mug-hot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/mug-saucer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/multiply.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/museum.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/music.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/n.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/naira-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/navicon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/network-wired.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/neuter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/newspaper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/non-binary.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/not-equal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/notdef.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/note-sticky.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/notes-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/o.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/object-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/object-ungroup.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/octagon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/oil-can.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/oil-well.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/om.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/otter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/outdent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/p.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pager.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paint-brush.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paint-roller.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paintbrush.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/palette.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pallet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/panorama.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paper-plane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paperclip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/parachute-box.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paragraph.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/parking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/passport.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pastafarianism.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paste.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pause-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pause.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/paw.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/peace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-clip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-fancy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-nib.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-ruler.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen-to-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pencil-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pencil-ruler.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pencil-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pencil.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pentagon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-arrows-left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-arrows.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-carry-box.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-carry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-pulling.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-robbery.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/people-roof.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pepper-hot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/percent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/percentage.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-arrow-down-to-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-arrow-up-from-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-biking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-booth.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-breastfeeding.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-cane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-chalkboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-digging.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-dots-from-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-dress-burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-dress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-drowning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-falling-burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-falling.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-half-dress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-harassing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-hiking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-military-pointing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-military-rifle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-military-to-person.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-praying.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-pregnant.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-rays.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-rifle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-running.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-shelter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-skating.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-skiing-nordic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-skiing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-snowboarding.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-swimming.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-through-window.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking-arrow-loop-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking-dashed-line-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking-luggage.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking-with-cane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person-walking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/person.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/peseta-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/peso-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-flip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-square-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone-volume.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/phone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/photo-film.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/photo-video.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pie-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/piggy-bank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pills.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ping-pong-paddle-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pizza-slice.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/place-of-worship.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-arrival.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-departure.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plant-wilt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plate-wheat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/play-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/play.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plug.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plus-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plus-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plus-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/podcast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poll-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poll.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poo-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poo-storm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/poop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/portrait.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pound-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/power-off.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pray.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/praying-hands.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/prescription-bottle-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/prescription-bottle-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/prescription-bottle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/prescription.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/print.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/procedures.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/project-diagram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pump-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/pump-soap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/puzzle-piece.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/q.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/qrcode.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/question-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quidditch-broom-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quidditch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quote-left-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quote-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quote-right-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quote-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/quran.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/r.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/radiation-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/radiation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/radio.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rainbow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/random.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ranking-star.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/receipt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/record-vinyl.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rectangle-ad.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rectangle-list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rectangle-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rectangle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/recycle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/redo-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/redo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/refresh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/registered.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/remove-format.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/remove.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/reorder.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/repeat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/reply-all.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/reply.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/republican.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/restroom.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/retweet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ribbon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/right-from-bracket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/right-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/right-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/right-to-bracket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ring.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rmb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-barrier.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-bridge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road-spikes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/road.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/robot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rocket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rod-asclepius.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rod-snake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate-back.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate-backward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate-forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rouble.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/route.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rss-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rub.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruble-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruble.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rug.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruler-combined.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruler-horizontal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruler-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ruler.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/running.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rupee-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rupee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/rupiah-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/s.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sack-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sack-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sad-cry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sad-tear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sailboat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/satellite-dish.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/satellite.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/save.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scale-balanced.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scale-unbalanced-flip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scale-unbalanced.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/school.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scissors.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/screwdriver-wrench.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/screwdriver.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scroll-torah.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/scroll.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sd-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/search-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/search-location.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/search-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/search-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/search.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/section.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/seedling.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/septagon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/server.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shapes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share-alt-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share-from-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share-nodes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/share.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sheet-plastic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shekel-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shekel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sheqel-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sheqel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-cat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-dog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-halved.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield-virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shield.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ship.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shipping-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shirt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shoe-prints.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shop-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shop-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shopping-bag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shopping-basket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shopping-cart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shower.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shrimp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shuffle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shuttle-space.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/shuttle-van.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-hanging.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-in-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-in.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-language.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-out-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign-out.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signal-5.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signal-perfect.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signature.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/signs-post.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sim-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/single-quote-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/single-quote-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sitemap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/skating.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/skiing-nordic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/skiing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/skull-crossbones.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/skull.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sleigh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sliders-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sliders.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smile-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smile-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smoking-ban.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/smoking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sms.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/snowboarding.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/snowflake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/snowman.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/snowplow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/soap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/soccer-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/socks.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/solar-panel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-asc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-desc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-down-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-up-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-alpha-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-asc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-desc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-down-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-up-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-amount-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-asc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-desc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-asc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-desc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-down-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-up-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-numeric-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sort.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/space-shuttle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spaghetti-monster-flying.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spell-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spider.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spinner.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spiral.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/splotch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spoon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spray-can-sparkles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/spray-can.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sprout.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-arrow-up-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-binary.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-caret-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-caret-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-caret-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-caret-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-envelope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-nfi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-parking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-pen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-person-confined.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-phone-flip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-phone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-poll-horizontal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-poll-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-root-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-root-variable.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-rss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-share-nodes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-up-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/staff-aesculapius.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/staff-snake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stairs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stamp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stapler.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-and-crescent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-half-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-half-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-of-david.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star-of-life.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/star.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/step-backward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/step-forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sterling-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stethoscope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sticky-note.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stop-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stopwatch-20.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stopwatch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/store-alt-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/store-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/store-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/store.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stream.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/street-view.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/strikethrough.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/stroopwafel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/subscript.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/subtract.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/subway.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/suitcase-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/suitcase-rolling.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/suitcase.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sun-plant-wilt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sun.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/superscript.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/surprise.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/swatchbook.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/swimmer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/swimming-pool.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/synagogue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sync-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/sync.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/syringe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/t-shirt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/t.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-cells-column-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-cells-large.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-cells-row-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-cells-row-unlock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-cells.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-columns.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-tennis-paddle-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table-tennis.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/table.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablet-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablet-android.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablet-button.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablet-screen-button.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tablets.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachograph-digital.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer-alt-average.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer-alt-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer-average.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tachometer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tags.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tanakh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tape.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tarp-droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tarp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tasks-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tasks.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/taxi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/teeth-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/teeth.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/teletype.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/television.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-0.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-4.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-high.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-low.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-quarter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-three-quarters.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/temperature-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tenge-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tenge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tent-arrow-down-to-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tent-arrow-left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tent-arrow-turn-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tent-arrows-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tents.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/terminal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/text-height.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/text-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/text-width.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/th-large.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/th-list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/th.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/theater-masks.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-0.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-4.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-quarter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer-three-quarters.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thermometer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumb-tack-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumb-tack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumbs-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumbs-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumbtack-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thumbtack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/thunderstorm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ticket-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ticket-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/ticket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/timeline.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/times-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/times-rectangle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/times-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tint-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tired.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toggle-off.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toggle-on.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet-paper-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet-paper-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet-paper-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet-paper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet-portable.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toilets-portable.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/toolbox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tools.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tooth.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/torah.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/torii-gate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tornado.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tower-broadcast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tower-cell.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tower-observation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tractor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trademark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/traffic-light.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trailer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/train-subway.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/train-tram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/train.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/transgender-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/transgender.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-can-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-can.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-restore-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash-restore.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tree-city.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tree.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/triangle-circle-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/triangle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trophy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trowel-bricks.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/trowel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-field-un.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-field.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-front.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-loading.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-monster.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-moving.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-pickup.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-plane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck-ramp-box.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/truck.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/try.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tshirt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/turkish-lira-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/turkish-lira.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/turn-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/turn-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tv-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/tv.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/u.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/umbrella-beach.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/umbrella.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/underline.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/undo-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/undo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/universal-access.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/university.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/unlink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/unlock-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/unlock-keyhole.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/unlock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/unsorted.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/up-down-left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/up-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/up-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/up-right-and-down-left-from-center.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/up-right-from-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/upload.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/usd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-alt-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-astronaut.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-cog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-doctor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-edit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-friends.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-gear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-graduate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-injured.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-large-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-large.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-md.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-ninja.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-nurse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-pen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-secret.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-shield.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-tag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-tie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-between-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-cog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-gear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-rays.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-rectangle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users-viewfinder.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/users.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/utensil-spoon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/utensils.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/van-shuttle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vault.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vcard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vector-polygon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/venus-double.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/venus-mars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/venus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vest-patches.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vest.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vial-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vial-virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vial.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vials.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/video-camera.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/video-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/video.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vihara.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/virus-covid-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/virus-covid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/virus-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/viruses.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/voicemail.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volcano.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volleyball-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volleyball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-control-phone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-high.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-low.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-mute.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-off.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/volume-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vote-yea.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/vr-cardboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/w.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/walkie-talkie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/walking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wallet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wand-magic-sparkles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wand-magic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wand-sparkles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/warehouse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/warning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/water-ladder.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wave-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/web-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/weight-hanging.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/weight-scale.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/weight.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheat-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheat-awn-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheat-awn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheelchair-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheelchair-move.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wheelchair.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/whiskey-glass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wifi-3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wifi-strong.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wifi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wind.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/window-close.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/window-maximize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/window-minimize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/window-restore.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wine-bottle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wine-glass-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wine-glass-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wine-glass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/won-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/won.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/worm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/wrench.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/x-ray.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/x.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/xmark-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/xmark-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/xmarks-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/y.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/yen-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/yen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/yin-yang.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/z.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs/solid/zap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/11ty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/42-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/500px.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/accessible-icon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/accusoft.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/adn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/adversal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/affiliatetheme.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/airbnb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/algolia.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/alipay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/amazon-pay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/amazon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/amilia.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/android.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/angellist.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/angrycreative.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/angular.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/app-store-ios.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/app-store.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/apper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/apple-pay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/apple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/artstation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/asymmetrik.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/atlassian.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/audible.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/autoprefixer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/avianex.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/aviato.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/aws.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bandcamp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/battle-net.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/behance-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/behance.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bilibili.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bimobject.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bitbucket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bitcoin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bity.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/black-tie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/blackberry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/blogger-b.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/blogger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bluesky.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bluetooth-b.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bluetooth.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bootstrap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/bots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/brave-reverse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/brave.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/btc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/buffer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/buromobelexperte.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/buy-n-large.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/buysellads.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/canadian-maple-leaf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cash-app.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-amazon-pay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-amex.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-apple-pay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-diners-club.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-discover.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-jcb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-mastercard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-paypal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-stripe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cc-visa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/centercode.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/centos.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/chrome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/chromecast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cloudflare.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cloudscale.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cloudsmith.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cloudversify.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cmplid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/codepen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/codiepie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/confluence.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/connectdevelop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/contao.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cotton-bureau.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cpanel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-by.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-nc-eu.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-nc-jp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-nc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-nd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-pd-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-pd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-remix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-sa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-sampling-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-sampling.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-share.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons-zero.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/creative-commons.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/critical-role.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/css.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/css3-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/css3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/cuttlefish.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/d-and-d-beyond.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/d-and-d.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dailymotion.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dart-lang.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dashcube.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/debian.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/deezer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/delicious.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/deploydog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/deskpro.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dev.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/deviantart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dhl.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/diaspora.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/digg.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/digital-ocean.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/discord.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/discourse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/disqus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dochub.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/docker.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/draft2digital.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dribbble-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dribbble.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dropbox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/drupal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/duolingo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/dyalog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/earlybirds.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ebay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/edge-legacy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/edge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/elementor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/eleventy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ello.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ember.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/empire.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/envira.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/erlang.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ethereum.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/etsy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/evernote.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/expeditedssl.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/facebook-f.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/facebook-messenger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/facebook-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/facebook.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fantasy-flight-games.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fedex.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fedora.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/figma.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/files-pinwheel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/firefox-browser.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/firefox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/first-order-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/first-order.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/firstdraft.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/flickr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/flipboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/flutter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fly.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/font-awesome-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/font-awesome-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/font-awesome-logo-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/font-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fonticons-fi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fonticons.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fort-awesome-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fort-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/forumbee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/foursquare.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/free-code-camp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/freebsd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/fulcrum.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/galactic-republic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/galactic-senate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/get-pocket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gg-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gg.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/git-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/git-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/git.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/github-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/github-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/github.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gitkraken.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gitlab-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gitlab.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gitter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/glide-g.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/glide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gofore.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/golang.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/goodreads-g.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/goodreads.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-drive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-pay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-play.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-plus-g.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-plus-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-scholar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google-wallet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/google.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gratipay.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/grav.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gripfire.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/grunt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/guilded.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/gulp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hacker-news-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hacker-news.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hackerrank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hashnode.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hips.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hire-a-helper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hooli.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hornbill.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hotjar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/houzz.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/html5.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/hubspot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ideal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/imdb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/innosoft.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/instagram-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/instagram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/instalod.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/intercom.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/internet-explorer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/invision.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ioxhost.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/itch-io.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/itunes-note.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/itunes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/java.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/jedi-order.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/jenkins.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/jira.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/joget.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/joomla.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/js-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/js.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/jsfiddle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/jxl.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/kaggle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/kakao-talk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/keybase.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/keycdn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/kickstarter-k.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/kickstarter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/korvue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/laravel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/lastfm-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/lastfm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/leanpub.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/less.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/letterboxd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/linkedin-in.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/linkedin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/linktree.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/linode.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/linux.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/lumon-drop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/lumon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/lyft.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/magento.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mailchimp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mandalorian.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/markdown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mastodon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/maxcdn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mdb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/medapps.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/medium-m.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/medium.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/medrt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/meetup.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/megaport.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mendeley.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/meta.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/microblog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/microsoft.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mintbit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mixcloud.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mixer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/mizuni.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/modx.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/monero.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/napster.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/neos.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/nfc-directional.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/nfc-symbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/nimblr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/node-js.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/node.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/notion.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/npm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ns8.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/nutritionix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/octopus-deploy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/odnoklassniki-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/odnoklassniki.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/odysee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/old-republic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/openai.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/opencart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/openid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/opensuse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/opera.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/optin-monster.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/orcid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/osi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/padlet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/page4.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pagelines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/palfed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pandora.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/patreon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/paypal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/perbyte.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/periscope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/phabricator.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/phoenix-framework.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/phoenix-squadron.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/php.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pied-piper-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pied-piper-hat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pied-piper-pp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pied-piper-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pied-piper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pinterest-p.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pinterest-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pinterest.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pixelfed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pixiv.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/playstation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/product-hunt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/pushed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/python.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/qq.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/quinscape.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/quora.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/r-project.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/raspberry-pi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ravelry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/react.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/reacteurope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/readme.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rebel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/red-river.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/reddit-alien.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/reddit-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/reddit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/redhat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rendact.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/renren.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/replyd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/researchgate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/resolving.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rev.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rocketchat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rockrms.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/rust.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/safari.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/salesforce.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/schlix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/screenpal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/scribd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/searchengin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sellcast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sellsy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/servicestack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/shirtsinbulk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/shoelace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/shopify.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/shopware.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/signal-messenger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/simplybuilt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sistrix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sith.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sitrox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sketch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/skyatlas.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/skype.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/slack-hash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/slack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/slideshare.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/snapchat-ghost.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/snapchat-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/snapchat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/soundcloud.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sourcetree.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/space-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/speakap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/speaker-deck.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/spotify.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-behance.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-bluesky.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-dribbble.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-facebook.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-figma.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-font-awesome-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-font-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-git.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-github.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-gitlab.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-google-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-hacker-news.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-instagram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-js.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-kickstarter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-lastfm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-letterboxd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-linkedin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-odnoklassniki.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-pied-piper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-pinterest.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-reddit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-snapchat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-steam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-threads.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-tumblr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-twitter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-upwork.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-viadeo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-vimeo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-web-awesome-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-web-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-whatsapp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-x-twitter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-xing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/square-youtube.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/squarespace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stack-exchange.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stack-overflow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stackpath.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/staylinked.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/steam-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/steam-symbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/steam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/sticker-mule.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/strava.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stripe-s.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stripe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stubber.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/studiovinari.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stumbleupon-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/stumbleupon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/superpowers.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/supple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/suse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/swift.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/symfony.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/teamspeak.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/telegram-plane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/telegram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tencent-weibo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tex.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/the-red-yeti.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/themeco.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/themeisle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/think-peaks.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/threads.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tidal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tiktok.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/trade-federation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/trello.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tumblr-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/tumblr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/twitch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/twitter-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/twitter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/typo3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/uber.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ubuntu.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/uikit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/umbraco.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/uncharted.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/uniregistry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/unity.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/unsplash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/untappd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ups.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/upwork.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/usb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/usps.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/ussunnah.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vaadin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/viacoin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/viadeo-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/viadeo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/viber.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vimeo-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vimeo-v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vimeo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vine.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vnv.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vsco.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/vuejs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/w3c.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/watchman-monitoring.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/waze.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/web-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/webflow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/weebly.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/weibo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/weixin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/whatsapp-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/whatsapp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/whmcs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wikipedia-w.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/windows.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wirsindhandwerk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wix.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wizards-of-the-coast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wodu.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wolf-pack-battalion.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wordpress-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wordpress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wpbeginner.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wpexplorer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wpforms.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wpressr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/wsh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/x-twitter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/xbox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/xing-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/xing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/y-combinator.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yahoo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yammer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yandex-international.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yandex.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yarn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yelp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/yoast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/youtube-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/youtube.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/brands/zhihu.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/address-book.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/address-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/alarm-clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/angry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/arrow-alt-circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/arrow-alt-circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/arrow-alt-circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/arrow-alt-circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/bar-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/bell-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/bell.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/bookmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/building.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-days.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/calendar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/camera-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/camera.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/caret-square-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/caret-square-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/caret-square-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/caret-square-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chart-bar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/check-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/check-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-bishop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-king.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-knight.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-pawn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-queen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/chess-rook.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-dot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-pause.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-play.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-stop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/clipboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/clock-four.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/clone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/closed-captioning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/cloud.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/comment-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/comment-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/comment.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/commenting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/comments.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/compass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/contact-book.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/contact-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/copy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/copyright.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/credit-card-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/credit-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/dizzy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/dot-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/drivers-license.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/edit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/envelope-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/envelope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/eye-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/eye.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-angry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-dizzy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-flushed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-frown-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-frown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grimace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-beam-sweat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-hearts.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-squint-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-stars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-tongue-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-tongue-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-tongue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-grin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-kiss-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-kiss-wink-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-kiss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-laugh-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-laugh-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-laugh-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-laugh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-meh-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-meh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-rolling-eyes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-sad-cry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-sad-tear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-smile-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-smile-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-smile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-surprise.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/face-tired.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-archive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-audio.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-clipboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-code.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-excel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-image.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-pdf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-powerpoint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-text.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-video.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-word.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file-zipper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/file.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/floppy-disk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/flushed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/folder-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/folder-closed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/folder-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/folder.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/font-awesome-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/font-awesome-logo-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/font-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/frown-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/frown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/futbol-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/futbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/gem.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grimace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-beam-sweat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-hearts.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-squint-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-stars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-tongue-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-tongue-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-tongue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/grin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-back-fist.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-lizard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-paper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-peace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-point-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-point-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-point-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-point-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-pointer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-rock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-scissors.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand-spock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hand.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/handshake-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/handshake-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/handshake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hard-drive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hdd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/headphones-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/headphones-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/headphones.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/home-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/home-lg-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/home.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hospital-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hospital-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hospital.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hourglass-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hourglass-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hourglass-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/hourglass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/house.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/id-badge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/id-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/image.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/images.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/keyboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/kiss-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/kiss-wink-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/kiss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/laugh-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/laugh-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/laugh-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/laugh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/lemon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/life-ring.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/lightbulb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/list-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/map.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/meh-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/meh-rolling-eyes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/meh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/message.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/minus-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/money-bill-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/money-bill-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/moon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/newspaper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/note-sticky.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/object-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/object-ungroup.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/paper-plane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/paste.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/pause-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/pen-to-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/play-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/plus-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/question-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/rectangle-list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/rectangle-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/rectangle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/registered.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/sad-cry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/sad-tear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/save.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/share-from-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/share-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/smile-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/smile-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/smile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/snowflake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/soccer-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-caret-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-caret-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-caret-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-caret-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/star-half-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/star-half-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/star-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/star.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/sticky-note.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/stop-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/sun.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/surprise.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/thumbs-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/thumbs-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/times-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/times-rectangle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/tired.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/trash-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/trash-can.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/truck.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/user-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/user-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/user-large.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/vcard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/window-close.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/window-maximize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/window-minimize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/window-restore.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/regular/xmark-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/0.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/4.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/5.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/6.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/7.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/8.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/9.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/a.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ad.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/add.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/address-book.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/address-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/adjust.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/air-freshener.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/alarm-clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/align-center.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/align-justify.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/align-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/align-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/allergies.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ambulance.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/american-sign-language-interpreting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/anchor-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/anchor-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/anchor-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/anchor-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/anchor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-double-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-double-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-double-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-double-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angles-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angles-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angles-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angles-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/angry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ankh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/apple-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/apple-whole.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/archive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/archway.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/area-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-alt-circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-alt-circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-alt-circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-alt-circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-1-9.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-9-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-a-z.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-short-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-up-across-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-up-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-wide-short.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down-z-a.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-left-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-left-rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-pointer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-arrow-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-from-bracket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-from-file.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-to-bracket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-to-city.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right-to-file.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-rotate-back.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-rotate-backward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-rotate-forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-rotate-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-rotate-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-trend-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-trend-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-turn-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-turn-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-1-9.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-9-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-a-z.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-from-bracket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-from-ground-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-from-water-pump.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-right-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-right-from-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-short-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-wide-short.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up-z-a.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-alt-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-alt-v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-down-to-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-down-to-people.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-left-right-to-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-spin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-split-up-and-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-to-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-to-dot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-to-eye.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-turn-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-turn-to-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-up-down-left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-up-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-up-to-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows-v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/arrows.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/asl-interpreting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/assistive-listening-systems.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/asterisk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/at.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/atlas.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/atom.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/audio-description.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/austral-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/automobile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/award.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/b.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baby-carriage.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baby.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/backspace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/backward-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/backward-step.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/backward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bacon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bacteria.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bacterium.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bag-shopping.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bahai.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baht-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/balance-scale-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/balance-scale-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/balance-scale.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ban-smoking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ban.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/band-aid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bandage.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bangladeshi-taka-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bar-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/barcode.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bars-progress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bars-staggered.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baseball-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baseball-bat-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/baseball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/basket-shopping.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/basketball-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/basketball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bath.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bathtub.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-0.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-4.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-5.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-car.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-quarter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery-three-quarters.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/battery.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bed-pulse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/beer-mug-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/beer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bell-concierge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bell-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bell.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bezier-curve.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bible.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bicycle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/biking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/binoculars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/biohazard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/birthday-cake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bitcoin-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/blackboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/blender-phone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/blender.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/blind.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/blog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bold.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bolt-lightning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bomb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bong.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-atlas.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-bible.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-bookmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-dead.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-journal-whills.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-open-reader.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-quran.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-reader.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-skull.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book-tanakh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/book.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bookmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/border-all.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/border-none.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/border-style.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/border-top-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bore-hole.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bottle-droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bottle-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bowl-food.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bowl-rice.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bowling-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/box-archive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/box-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/box-tissue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/box.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/boxes-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/boxes-packing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/boxes-stacked.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/boxes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/braille.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/brain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/brazilian-real-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bread-slice.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bridge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/briefcase-clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/briefcase-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/briefcase.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/broadcast-tower.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/broom-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/broom.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/brush.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bucket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bug-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bug.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bugs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-circle-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-columns.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-ngo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-shield.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-un.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building-wheat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/building.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bullhorn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bullseye.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/burger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/burn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bus-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bus-side.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bus-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/bus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/business-time.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/c.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cab.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cable-car.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cake-candles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calculator.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-day.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-days.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-week.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/calendar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/camera-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/camera-retro.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/camera-rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/camera.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/campground.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cancel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/candy-cane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cannabis.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/capsules.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-battery.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-crash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-on.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-rear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-side.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car-tunnel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/car.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caravan.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-square-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-square-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-square-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-square-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/caret-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/carriage-baby.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/carrot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cart-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cart-flatbed-suitcase.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cart-flatbed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cart-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cart-shopping.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cash-register.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cedi-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cent-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/certificate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chain-broken.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chain-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chair.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chalkboard-teacher.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chalkboard-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chalkboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/champagne-glasses.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/charging-station.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-area.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-bar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-column.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-diagram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-gantt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-pie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chart-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/check-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/check-double.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/check-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/check-to-slot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cheese.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-bishop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-board.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-king.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-knight.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-pawn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-queen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess-rook.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chess.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/chevron-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/child-combatant.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/child-dress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/child-reaching.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/child-rifle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/child.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/children.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/church.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-arrow-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-chevron-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-chevron-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-chevron-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-chevron-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-dollar-to-slot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-dot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-half-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-info.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-nodes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-notch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-pause.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-play.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-radiation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-stop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/city.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clapperboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clinic-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clipboard-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clipboard-list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clipboard-question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clipboard-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clipboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clock-four.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clock-rotate-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/close.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/closed-captioning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-download-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-download.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-meatball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-moon-rain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-moon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-rain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-showers-heavy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-showers-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-sun-rain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-sun.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-upload-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud-upload.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cloud.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/clover.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cny.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cocktail.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-branch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-commit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-compare.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-fork.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-merge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code-pull-request.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/code.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/coffee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cogs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/coins.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/colon-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/columns.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-nodes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment-sms.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comment.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/commenting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comments-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/comments.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compact-disc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compass-drafting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compress-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compress-arrows-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/compress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/computer-mouse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/computer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/concierge-bell.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/contact-book.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/contact-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cookie-bite.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cookie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/copy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/copyright.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/couch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/credit-card-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/credit-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crop-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crop-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cross.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crosshairs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/crutch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cruzeiro-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cube.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cubes-stacked.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cubes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cut.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/cutlery.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/d.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dashboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/database.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/deaf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/deafness.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dedent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/delete-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/democrat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/desktop-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/desktop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dharmachakra.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diagnoses.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diagram-next.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diagram-predecessor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diagram-project.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diagram-successor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diamond-turn-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/diamond.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-d20.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-d6.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-five.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-four.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-one.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-six.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-three.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice-two.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dice.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/digging.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/digital-tachograph.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/directions.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/disease.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/display.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/divide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dizzy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dna.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dollar-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dolly-box.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dolly-flatbed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dolly.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/donate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dong-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/door-closed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/door-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dot-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dove.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/down-left-and-up-right-to-center.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/down-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/download.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/drafting-compass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dragon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/draw-polygon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/drivers-license.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/droplet-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/drum-steelpan.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/drum.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/drumstick-bite.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dumbbell.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dumpster-fire.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dumpster.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/dungeon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/e.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ear-deaf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ear-listen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-africa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-america.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-americas.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-asia.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-europe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth-oceania.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/earth.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/edit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/egg.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eject.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/elevator.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ellipsis-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ellipsis-v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ellipsis-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ellipsis.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelope-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelope-open-text.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelope-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelope-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/envelopes-bulk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/equals.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eraser.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ethernet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eur.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/euro-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/euro.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/exchange-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/exchange.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/exclamation-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/exclamation-triangle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/expand-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/expand-arrows-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/expand.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/explosion.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/external-link-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/external-link-square-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/external-link-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/external-link.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eye-dropper-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eye-dropper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eye-low-vision.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eye-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eye.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/eyedropper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/f.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-angry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-dizzy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-flushed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-frown-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-frown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grimace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-beam-sweat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-hearts.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-squint-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-stars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-tongue-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-tongue-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-tongue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-grin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-kiss-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-kiss-wink-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-kiss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-laugh-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-laugh-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-laugh-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-laugh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-meh-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-meh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-rolling-eyes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-sad-cry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-sad-tear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-smile-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-smile-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-smile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-surprise.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/face-tired.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fan.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fast-backward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fast-forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/faucet-drip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/faucet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fax.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/feather-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/feather-pointed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/feather.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/feed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/female.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ferry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fighter-jet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-archive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-audio.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-clipboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-code.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-contract.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-csv.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-download.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-edit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-excel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-export.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-fragment.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-half-dashed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-image.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-import.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-invoice-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-invoice.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-medical-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-pdf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-pen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-powerpoint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-prescription.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-shield.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-signature.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-text.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-upload.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-video.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-waveform.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-word.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file-zipper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/file.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fill-drip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fill.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/film-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/film-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/film.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/filter-circle-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/filter-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/filter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fingerprint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire-burner.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire-extinguisher.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire-flame-curved.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire-flame-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fire.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/first-aid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fish-fins.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fish.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/fist-raised.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flag-checkered.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flag-usa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flask-vial.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flask.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/floppy-disk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/florin-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/flushed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-closed.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder-tree.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/folder.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/font-awesome-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/font-awesome-logo-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/font-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/font.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/football-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/football.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/forward-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/forward-step.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/franc-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/frog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/frown-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/frown.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/funnel-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/futbol-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/futbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/g.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gamepad.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gas-pump.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge-high.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge-med.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge-simple-high.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge-simple-med.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gauge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gavel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gbp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gem.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/genderless.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ghost.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gift.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gifts.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-cheers.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-martini-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-martini.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-water-droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glass-whiskey.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/glasses.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe-africa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe-americas.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe-asia.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe-europe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe-oceania.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/globe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/golf-ball-tee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/golf-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gopuram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/graduation-cap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/greater-than-equal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/greater-than.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grid-horizontal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grid-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grimace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-beam-sweat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-hearts.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-squint-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-stars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-tears.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-tongue-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-tongue-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-tongue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grip-horizontal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grip-lines-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grip-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grip-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/grip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/group-arrows-rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/guarani-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/guitar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/gun.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/h-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hamburger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hammer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hamsa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-back-fist.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-fist.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-hand.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-usd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-holding.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-lizard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-middle-finger.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-paper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-peace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-point-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-point-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-point-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-point-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-pointer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-rock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-scissors.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-sparkles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand-spock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hand.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handcuffs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-american-sign-language-interpreting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-asl-interpreting.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-bound.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-bubbles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-clapping.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-helping.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-holding-child.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-holding-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-holding.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-praying.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands-wash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hands.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-alt-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-angle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-simple-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/handshake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hanukiah.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hard-drive.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hard-hat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hard-of-hearing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hashtag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hat-cowboy-side.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hat-cowboy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hat-hard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hat-wizard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/haykal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hdd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/head-side-cough-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/head-side-cough.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/head-side-mask.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/head-side-virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/header.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heading.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/headphones-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/headphones-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/headphones.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/headset.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-broken.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-crack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-music-camera-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart-pulse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heartbeat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/helicopter-symbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/helicopter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/helmet-safety.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/helmet-un.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/heptagon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hexagon-nodes-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hexagon-nodes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hexagon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/highlighter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hiking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hill-avalanche.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hill-rockslide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hippo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/history.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hockey-puck.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/holly-berry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/home-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/home-lg-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/home-lg.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/home-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/home.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/horse-head.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/horse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hospital-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hospital-symbol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hospital-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hospital-wide.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hospital.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hot-tub-person.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hot-tub.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hotdog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hotel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-end.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass-start.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hourglass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-chimney-crack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-chimney-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-chimney-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-chimney-window.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-chimney.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-crack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-damage.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-fire.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-flood-water-circle-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-flood-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-laptop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-medical-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-medical-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-medical-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-medical-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-signal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-tsunami.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house-user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/house.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hryvnia-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hryvnia.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/hurricane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/i-cursor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/i.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ice-cream.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/icicles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/icons.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/id-badge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/id-card-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/id-card-clip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/id-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/igloo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ils.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/image-portrait.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/image.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/images.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/inbox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/indent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/indian-rupee-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/indian-rupee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/industry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/infinity.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/info-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/info.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/inr.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/institution.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/italic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/j.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jar-wheat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jedi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jet-fighter-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jet-fighter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/joint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/journal-whills.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jpy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/jug-detergent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/k.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kaaba.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/key.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/keyboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/khanda.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kip-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kiss-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kiss-wink-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kiss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kit-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kitchen-set.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/kiwi-bird.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/krw.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/l.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ladder-water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/land-mine-on.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/landmark-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/landmark-dome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/landmark-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/landmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/language.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laptop-code.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laptop-file.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laptop-house.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laptop-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laptop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lari-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laugh-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laugh-squint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laugh-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/laugh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/layer-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/leaf.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/left-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/legal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lemon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/less-than-equal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/less-than.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/level-down-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/level-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/level-up-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/level-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/life-ring.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lightbulb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/line-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lines-leaning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/link-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/link.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lira-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-1-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-dots.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-numeric.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-ol.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-squares.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list-ul.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/litecoin-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location-arrow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location-crosshairs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location-dot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location-pin-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location-pin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/location.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lock-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/locust.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-alt-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-alt-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-alt-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-alt-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/long-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/low-vision.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/luggage-cart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lungs-virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/lungs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/m.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magic-wand-sparkles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-location.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/magnifying-glass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mail-bulk.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mail-forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mail-reply-all.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mail-reply.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/male.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/manat-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-location-dot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-location.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-marked-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-marked.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-marker-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-marker.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-pin.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map-signs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/map.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/marker.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-and-venus-burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-and-venus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-double.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-stroke-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-stroke-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-stroke-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-stroke-v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/martini-glass-citrus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/martini-glass-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/martini-glass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mask-face.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mask-ventilator.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mask.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/masks-theater.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mattress-pillow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/maximize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/medal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/medkit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/meh-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/meh-rolling-eyes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/meh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/memory.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/menorah.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mercury.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/message.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/meteor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microchip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone-alt-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone-lines-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microphone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/microscope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mill-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/minimize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/minus-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/minus-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mitten.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-android-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-android.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-button.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-phone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-retro.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-screen-button.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-screen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile-vibrate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mobile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-1-wave.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-transfer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-trend-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-wave-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-wave.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill-wheat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bill.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-bills.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-check-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-check-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/money-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/monument.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/moon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mortar-board.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mortar-pestle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mosque.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mosquito-net.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mosquito.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/motorcycle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mound.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mountain-city.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mountain-sun.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mountain.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mouse-pointer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mouse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mug-hot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/mug-saucer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/multiply.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/museum.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/music.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/n.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/naira-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/navicon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/network-wired.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/neuter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/newspaper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/non-binary.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/not-equal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/notdef.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/note-sticky.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/notes-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/o.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/object-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/object-ungroup.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/octagon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/oil-can.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/oil-well.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/om.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/otter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/outdent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/p.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pager.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paint-brush.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paint-roller.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paintbrush.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/palette.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pallet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/panorama.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paper-plane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paperclip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/parachute-box.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paragraph.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/parking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/passport.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pastafarianism.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paste.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pause-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pause.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/paw.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/peace.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-clip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-fancy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-nib.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-ruler.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen-to-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pencil-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pencil-ruler.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pencil-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pencil.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pentagon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-arrows-left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-arrows.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-carry-box.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-carry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-pulling.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-robbery.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/people-roof.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pepper-hot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/percent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/percentage.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-arrow-down-to-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-arrow-up-from-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-biking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-booth.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-breastfeeding.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-cane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-chalkboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-digging.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-dots-from-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-dress-burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-dress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-drowning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-falling-burst.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-falling.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-half-dress.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-harassing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-hiking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-military-pointing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-military-rifle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-military-to-person.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-praying.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-pregnant.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-rays.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-rifle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-running.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-shelter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-skating.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-skiing-nordic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-skiing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-snowboarding.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-swimming.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-through-window.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking-arrow-loop-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking-dashed-line-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking-luggage.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking-with-cane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person-walking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/person.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/peseta-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/peso-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-flip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-square-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone-volume.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/phone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/photo-film.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/photo-video.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pie-chart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/piggy-bank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pills.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ping-pong-paddle-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pizza-slice.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/place-of-worship.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-arrival.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-departure.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plant-wilt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plate-wheat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/play-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/play.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plug.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plus-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plus-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plus-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/podcast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poll-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poll.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poo-bolt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poo-storm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/poop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/portrait.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pound-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/power-off.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pray.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/praying-hands.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/prescription-bottle-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/prescription-bottle-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/prescription-bottle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/prescription.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/print.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/procedures.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/project-diagram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pump-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/pump-soap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/puzzle-piece.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/q.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/qrcode.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/question-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/question.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quidditch-broom-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quidditch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quote-left-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quote-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quote-right-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quote-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/quran.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/r.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/radiation-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/radiation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/radio.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rainbow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/random.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ranking-star.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/receipt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/record-vinyl.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rectangle-ad.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rectangle-list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rectangle-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rectangle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/recycle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/redo-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/redo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/refresh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/registered.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/remove-format.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/remove.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/reorder.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/repeat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/reply-all.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/reply.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/republican.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/restroom.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/retweet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ribbon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/right-from-bracket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/right-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/right-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/right-to-bracket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ring.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rmb.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-barrier.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-bridge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road-spikes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/road.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/robot.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rocket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rod-asclepius.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rod-snake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate-back.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate-backward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate-forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rotate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rouble.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/route.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rss-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rub.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruble-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruble.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rug.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruler-combined.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruler-horizontal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruler-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ruler.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/running.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rupee-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rupee.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/rupiah-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/s.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sack-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sack-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sad-cry.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sad-tear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sailboat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/satellite-dish.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/satellite.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/save.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scale-balanced.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scale-unbalanced-flip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scale-unbalanced.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school-circle-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school-flag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/school.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scissors.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/screwdriver-wrench.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/screwdriver.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scroll-torah.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/scroll.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sd-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/search-dollar.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/search-location.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/search-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/search-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/search.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/section.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/seedling.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/septagon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/server.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shapes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share-alt-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share-from-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share-nodes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/share.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sheet-plastic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shekel-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shekel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sheqel-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sheqel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-cat.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-dog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-halved.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-heart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield-virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shield.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ship.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shipping-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shirt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shoe-prints.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shop-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shop-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shopping-bag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shopping-basket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shopping-cart.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shower.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shrimp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shuffle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shuttle-space.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/shuttle-van.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-hanging.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-in-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-in.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-language.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-out-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign-out.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signal-5.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signal-perfect.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signature.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/signs-post.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sim-card.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/single-quote-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/single-quote-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sitemap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/skating.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/skiing-nordic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/skiing.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/skull-crossbones.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/skull.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sleigh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sliders-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sliders.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smile-beam.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smile-wink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smile.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smoking-ban.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/smoking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sms.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/snowboarding.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/snowflake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/snowman.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/snowplow.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/soap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/soccer-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/socks.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/solar-panel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-asc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-desc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-down-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-up-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-alpha-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-asc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-desc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-down-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-up-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-amount-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-asc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-desc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-asc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-desc.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-down-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-up-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-numeric-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sort.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spa.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/space-shuttle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spaghetti-monster-flying.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spell-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spider.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spinner.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spiral.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/splotch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spoon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spray-can-sparkles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/spray-can.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sprout.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-arrow-up-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-binary.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-caret-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-caret-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-caret-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-caret-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-envelope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-h.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-nfi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-parking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-pen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-person-confined.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-phone-flip.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-phone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-poll-horizontal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-poll-vertical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-root-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-root-variable.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-rss.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-share-nodes.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-up-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/staff-aesculapius.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/staff-snake.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stairs.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stamp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stapler.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-and-crescent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-half-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-half-stroke.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-of-david.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star-of-life.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/star.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/step-backward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/step-forward.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sterling-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stethoscope.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sticky-note.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stop-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stop.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stopwatch-20.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stopwatch.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/store-alt-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/store-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/store-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/store.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stream.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/street-view.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/strikethrough.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/stroopwafel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/subscript.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/subtract.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/subway.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/suitcase-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/suitcase-rolling.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/suitcase.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sun-plant-wilt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sun.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/superscript.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/surprise.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/swatchbook.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/swimmer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/swimming-pool.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/synagogue.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sync-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/sync.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/syringe.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/t-shirt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/t.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-cells-column-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-cells-large.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-cells-row-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-cells-row-unlock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-cells.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-columns.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-tennis-paddle-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table-tennis.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/table.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablet-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablet-android.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablet-button.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablet-screen-button.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tablets.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachograph-digital.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer-alt-average.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer-alt-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer-average.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tachometer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tags.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tanakh.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tape.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tarp-droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tarp.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tasks-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tasks.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/taxi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/teeth-open.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/teeth.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/teletype.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/television.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-0.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-4.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-arrow-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-high.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-low.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-quarter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-three-quarters.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/temperature-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tenge-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tenge.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tent-arrow-down-to-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tent-arrow-left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tent-arrow-turn-left.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tent-arrows-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tent.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tents.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/terminal.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/text-height.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/text-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/text-width.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/th-large.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/th-list.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/th.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/theater-masks.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-0.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-1.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-2.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-4.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-full.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-half.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-quarter.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer-three-quarters.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thermometer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumb-tack-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumb-tack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumbs-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumbs-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumbtack-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thumbtack.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/thunderstorm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ticket-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ticket-simple.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/ticket.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/timeline.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/times-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/times-rectangle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/times-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tint-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tint.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tired.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toggle-off.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toggle-on.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet-paper-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet-paper-blank.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet-paper-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet-paper.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet-portable.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toilets-portable.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/toolbox.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tools.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tooth.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/torah.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/torii-gate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tornado.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tower-broadcast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tower-cell.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tower-observation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tractor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trademark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/traffic-light.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trailer.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/train-subway.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/train-tram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/train.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tram.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/transgender-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/transgender.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-can-arrow-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-can.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-restore-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash-restore.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tree-city.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tree.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/triangle-circle-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/triangle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trophy.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trowel-bricks.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/trowel.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-arrow-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-droplet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-fast.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-field-un.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-field.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-front.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-loading.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-medical.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-monster.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-moving.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-pickup.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-plane.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck-ramp-box.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/truck.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/try.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tshirt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/turkish-lira-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/turkish-lira.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/turn-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/turn-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tv-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/tv.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/u.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/umbrella-beach.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/umbrella.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/underline.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/undo-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/undo.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/universal-access.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/university.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/unlink.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/unlock-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/unlock-keyhole.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/unlock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/unsorted.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/up-down-left-right.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/up-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/up-long.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/up-right-and-down-left-from-center.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/up-right-from-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/upload.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/usd.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-alt-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-astronaut.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-clock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-cog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-doctor.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-edit.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-friends.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-gear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-graduate.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-group.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-injured.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-large-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-large.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-lock.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-md.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-minus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-ninja.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-nurse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-pen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-plus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-secret.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-shield.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-tag.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-tie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/user.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-between-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-cog.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-gear.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-line.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-rays.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-rectangle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users-viewfinder.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/users.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/utensil-spoon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/utensils.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/v.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/van-shuttle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vault.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vcard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vector-polygon.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/venus-double.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/venus-mars.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/venus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vest-patches.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vest.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vial-circle-check.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vial-virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vial.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vials.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/video-camera.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/video-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/video.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vihara.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/virus-covid-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/virus-covid.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/virus-slash.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/virus.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/viruses.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/voicemail.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volcano.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volleyball-ball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volleyball.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-control-phone.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-down.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-high.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-low.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-mute.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-off.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-times.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-up.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/volume-xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vote-yea.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/vr-cardboard.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/w.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/walkie-talkie.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/walking.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wallet.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wand-magic-sparkles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wand-magic.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wand-sparkles.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/warehouse.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/warning.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/water-ladder.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/water.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wave-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/web-awesome.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/weight-hanging.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/weight-scale.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/weight.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheat-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheat-awn-circle-exclamation.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheat-awn.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheelchair-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheelchair-move.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wheelchair.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/whiskey-glass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wifi-3.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wifi-strong.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wifi.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wind.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/window-close.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/window-maximize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/window-minimize.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/window-restore.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wine-bottle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wine-glass-alt.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wine-glass-empty.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wine-glass.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/won-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/won.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/worm.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/wrench.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/x-ray.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/x.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/xmark-circle.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/xmark-square.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/xmark.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/xmarks-lines.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/y.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/yen-sign.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/yen.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/yin-yang.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/z.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/svgs-full/solid/zap.svg +1 -0
- django_auth_recovery_codes/static/vendor/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- django_auth_recovery_codes/static/vendor/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- django_auth_recovery_codes/static/vendor/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- django_auth_recovery_codes/static/vendor/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
- django_auth_recovery_codes/static/vendor/fonts/fonts.css +738 -0
- django_auth_recovery_codes/static/vendor/sweetalert2/sweetalert2.all.min.js +6 -0
- django_auth_recovery_codes/tasks.py +335 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/base.html +38 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/dashboard.html +43 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/purge_report/purge_history_report.txt +16 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/purge_report/purge_report.html +0 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes/recovery_codes_email.html +63 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes/recovery_codes_email.txt +9 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_audit/recovery_audit.html +52 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_audit/recovery_codes_audit.txt +17 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_deletion/deleted_codes.html +196 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_deletion/deleted_codes.txt +73 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_deletion/no_purge.html +42 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/emails_templates/recovery_codes_deletion/no_purge.txt +14 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/login.html +37 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/django_messages.html +14 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/generate_codes.html +112 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/invalidate_or_remove_codes.html +18 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/messages.html +26 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/navbar.html +10 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/notify.html +9 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/pagination.html +23 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/partial_forms/invalidate_code_form.html +28 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/partial_forms/login_form.html +36 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/partial_forms/remove_code_form.html +31 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/partial_forms/test_setup_form.html +22 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/security_tips.html +34 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/sidebar.html +78 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/test_setup.html +47 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/view_batch_history.html +222 -0
- django_auth_recovery_codes/templates/django_auth_recovery_codes/partials/view_codes.html +136 -0
- django_auth_recovery_codes/tests.py +3 -0
- django_auth_recovery_codes/urls.py +21 -0
- django_auth_recovery_codes/utils/__init__.py +0 -0
- django_auth_recovery_codes/utils/attempt_guard.py +197 -0
- django_auth_recovery_codes/utils/cache/__init__.py +0 -0
- django_auth_recovery_codes/utils/cache/cache_utils.py +9 -0
- django_auth_recovery_codes/utils/cache/safe_cache.py +235 -0
- django_auth_recovery_codes/utils/converter.py +192 -0
- django_auth_recovery_codes/utils/cooldown_period.py +128 -0
- django_auth_recovery_codes/utils/errors/__init__.py +0 -0
- django_auth_recovery_codes/utils/errors/enforcer.py +82 -0
- django_auth_recovery_codes/utils/errors/error_messages.py +27 -0
- django_auth_recovery_codes/utils/exporters/file_converters.py +128 -0
- django_auth_recovery_codes/utils/requests.py +20 -0
- django_auth_recovery_codes/utils/schedulers.py +57 -0
- django_auth_recovery_codes/utils/security/__init__.py +0 -0
- django_auth_recovery_codes/utils/security/generator.py +119 -0
- django_auth_recovery_codes/utils/security/hash.py +75 -0
- django_auth_recovery_codes/utils/utils.py +223 -0
- django_auth_recovery_codes/views.py +737 -0
- django_auth_recovery_codes/views_code_handler_helper.py +554 -0
- django_auth_recovery_codes/views_dashboard_helper.py +81 -0
- django_auth_recovery_codes/views_download_helper.py +80 -0
- django_auth_recovery_codes/views_helper.py +63 -0
- django_auth_recovery_codes-1.0.0.dist-info/METADATA +2787 -0
- django_auth_recovery_codes-1.0.0.dist-info/RECORD +5805 -0
- django_auth_recovery_codes-1.0.0.dist-info/WHEEL +5 -0
- django_auth_recovery_codes-1.0.0.dist-info/licenses/LICENSE +21 -0
- django_auth_recovery_codes-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,2787 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: django-auth-recovery-codes
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Django app for 2FA recovery codes
|
|
5
|
+
Home-page: https://github.com/EgbieAndersonUku1/django_2fa_recovery_codes
|
|
6
|
+
Author: Egbie Uku
|
|
7
|
+
Author-email: egbieuku@hotmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Requires-Python: >=3.10,<3.14
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Dist: Django>=5.0
|
|
13
|
+
Requires-Dist: django-picklefield>=3.3
|
|
14
|
+
Requires-Dist: django-q2>=1.8.0
|
|
15
|
+
Requires-Dist: django-email-sender>=2.0.6
|
|
16
|
+
Requires-Dist: requests>=2.32
|
|
17
|
+
Requires-Dist: reportlab>=4.4
|
|
18
|
+
Requires-Dist: redis>=3.5
|
|
19
|
+
Requires-Dist: pillow>=11.0
|
|
20
|
+
Requires-Dist: arrow>=1.3
|
|
21
|
+
Requires-Dist: beautifulsoup4>=4.13
|
|
22
|
+
Requires-Dist: asgiref>=3.9
|
|
23
|
+
Requires-Dist: soupsieve>=2.7
|
|
24
|
+
Requires-Dist: sqlparse>=0.5
|
|
25
|
+
Requires-Dist: typing_extensions>=4.14
|
|
26
|
+
Requires-Dist: tzdata>=2025.2
|
|
27
|
+
Dynamic: author
|
|
28
|
+
Dynamic: author-email
|
|
29
|
+
Dynamic: home-page
|
|
30
|
+
Dynamic: license-file
|
|
31
|
+
Dynamic: requires-python
|
|
32
|
+
|
|
33
|
+

|
|
34
|
+

|
|
35
|
+

|
|
36
|
+

|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## 🔐 Django 2FA Recovery Codes
|
|
40
|
+
|
|
41
|
+
The premises of this resuable application, is that it takes any Django application and extends that application so that it can now use the 2FA recovery codes as a backup login should you lose access.
|
|
42
|
+
|
|
43
|
+
`django_auth_recovery_codes` is a Django app that provides a robust system for generating, storing, and managing **2FA recovery codes**. Unlike a full two-factor authentication apps, this package focuses solely on **recovery codes**, although this is a lightweight application it is a very powerful tool, offering fine-grained control and asynchronous management for better UX and performance.
|
|
44
|
+
|
|
45
|
+
## Table of Contents
|
|
46
|
+
* [Requirements & Key Technologies](#requirements--key-technologies)
|
|
47
|
+
* [Key Features](#key-features)
|
|
48
|
+
* [Quickstart video walkthrough](#quickstart-video-walkthrough)
|
|
49
|
+
* [How it Differs From A Full Two-Factor Authentication Apps](#how-it-differs-from-a-full-two-factor-authentication-apps)
|
|
50
|
+
* [User Interface](#user-ui-interface)
|
|
51
|
+
* [Asynchronous usage](#asynchronous-usage)
|
|
52
|
+
* [Admin interface](#admin-interface)
|
|
53
|
+
* [Flag configuration](#flag-configuration)
|
|
54
|
+
* [Caching](#caching)
|
|
55
|
+
* [Email and Logging capabilities](#email-and-logging-capabilities)
|
|
56
|
+
* [Rate limiter](#rate-limiter)
|
|
57
|
+
* [Code generation attribrutes](#code-generation-attribrutes)
|
|
58
|
+
* [Cleanup Configuration Examples](#cleanup-configuration-examples)
|
|
59
|
+
* [Large app (millions of codes)](#large-app-millions-of-codes)
|
|
60
|
+
* [Cleanup Process Visualised](#cleanup-process-visualised)
|
|
61
|
+
* [Recommended Settings by Scale](#recommended-settings-by-scale)
|
|
62
|
+
* [How Cleanup Works Internally](#how-cleanup-works-internally)
|
|
63
|
+
* [FAQ Frequently Asked Questions](#faq--frequently-asked-questions)
|
|
64
|
+
* [Configurable flags for developer](#configurable-flags-for-developer)
|
|
65
|
+
* [2FA Recovery Code Generator](#django-2fa-recovery-code-generator)
|
|
66
|
+
* [Security overview](#security-overview)
|
|
67
|
+
* [Entropy](#entropy)
|
|
68
|
+
* [Total Combinations](#total-combinations)
|
|
69
|
+
* [Brute-Force Resistance](#brute-force-resistance)
|
|
70
|
+
* [Perspective](#prespective)
|
|
71
|
+
* [Developer Appendix 🛠️](#developer-appendix)
|
|
72
|
+
* [Summary](#summary)
|
|
73
|
+
* [Use Cases](#use-cases)
|
|
74
|
+
* [Installation](#installation)
|
|
75
|
+
* [Quick Example](#quick-example)
|
|
76
|
+
* [How to Use 2FA Recovery Codes](#how-to-use-2fa-recovery-codes)
|
|
77
|
+
* [Setting up the Cache or using the default cache](#setting-up-the-cache-or-using-the-default-cache)
|
|
78
|
+
* [How does the cache work?](#how-does-the-cache-work)
|
|
79
|
+
* [Using Pagination and Caching](#using-pagination-and-caching)
|
|
80
|
+
* [What cache should I use?](#what-cache-should-i-use)
|
|
81
|
+
* [Using Django Cache Without Configuring a Backend](#using-django-cache-without-configuring-a-backend)
|
|
82
|
+
* [Django-Q vs Celery and why Django Auth Recovery codes use Django-q](#django-q-vs-celery-and-why-django-auth-recovery-codes-use-django-q)
|
|
83
|
+
* [Why this application uses Django-Q](#why-this-application-uses-django-q)
|
|
84
|
+
* [Using Django-Q with `django_auth_recovery_codes`](#using-django-q-with-django-2fa-recovery-codes)
|
|
85
|
+
* [Benefits of using Django-Q](#benefits-of-using-django-q)
|
|
86
|
+
* [Setting up Django-q](#setting-up-django-q)
|
|
87
|
+
* [Django Auth Recovery Settings](#django-auth-recovery-settings)
|
|
88
|
+
* [Using and setting up Django-q](#using-and-setting-up-django-q)
|
|
89
|
+
* [Django Auth Recovery flag settings](#django-auth-recovery-flag-settings)
|
|
90
|
+
* [Recovery Code Display Settings](#recovery-code-display-settings)
|
|
91
|
+
* [Cooldown Settings Flags](#cooldown-settings-flags)
|
|
92
|
+
* [Rate Limiting & Caching](#rate-limiting--caching)
|
|
93
|
+
* [Audit & Logging Setting Flags](#audit--logging-setting-flags)
|
|
94
|
+
* [Email & Admin Settings Flags](#email--admin-settings-flags)
|
|
95
|
+
* [Code Management & Limits](#code-management--limits)
|
|
96
|
+
* [Site Settings Flags](#site-settings-flags)
|
|
97
|
+
* [Example Flag Usage](#example-flag-usage)
|
|
98
|
+
* [Best Practices for Managing Environment Variables](#best-practices-for-managing-environment-variables)
|
|
99
|
+
* [Default Values & Required Variables](#default-values--required-variables)
|
|
100
|
+
* [Run checks to verify that flags are valid](#run-checks-to-verify-that-flags-are-valid)
|
|
101
|
+
* [Sending Emails and using Logging](#sending-emails-and-using-logging)
|
|
102
|
+
* [Using async vs synchronous](#using-async-vs-synchronous)
|
|
103
|
+
* [Configuration settings](#configuration-settings)
|
|
104
|
+
* [Hang on a minute, why can I email myself the code only once, and only if I haven’t logged out after generating it?](#hang-on-a-minute-why-can-i-email-myself-the-code-only-once-and-only-if-i-havent-logged-out-after-generating-it)
|
|
105
|
+
* [What does this mean for your codes?](#what-does-this-mean-for-your-codes)
|
|
106
|
+
* [What happens if I refresh the page, can I still email myself the code?](#what-happens-if-i-refresh-the-page-can-i-still-email-myself-the-code)
|
|
107
|
+
* [But if I’m still logged in, why can I only email myself a single copy?](#but-if-im-still-logged-in-why-can-i-only-email-myself-a-single-copy)
|
|
108
|
+
* [Can I email myself a copy if I generate a new batch?](#can-i-email-myself-a-copy-if-i-generate-a-new-batch)
|
|
109
|
+
* [Using Logging with the Application](#using-logging-with-the-application)
|
|
110
|
+
* [What if I don’t want to override my existing LOGGING configuration?](#what-if-i-dont-want-to-override-my-existing-logging-configuration)
|
|
111
|
+
* [Downloading Recovery Codes](#downloading-recovery-codes)
|
|
112
|
+
* [How downloads work](#how-downloads-work)
|
|
113
|
+
* [Important security notes](#important-security-notes)
|
|
114
|
+
* [Example usage](#example-usage)
|
|
115
|
+
* [Quickstart and Walkthrough read](#quickstart-and-walkthrough)
|
|
116
|
+
* [Setup](#setup)
|
|
117
|
+
* [Installation (with Virtual Environment)](#installation-with-virtual-environment)
|
|
118
|
+
* [3. Upgrade pip (optional but recommended)](#3-upgrade-pip-optional-but-recommended)
|
|
119
|
+
* [4. Install Django (latest version)](#4-install-django-latest-version)
|
|
120
|
+
* [5. Install the recovery codes package](#5-install-the-recovery-codes-package)
|
|
121
|
+
* [6. Verify installation](#6-verify-installation)
|
|
122
|
+
* [8. Run initial migrations](#8-run-initial-migrations)
|
|
123
|
+
* [9. Create a Django superuser](#9-create-a-django-superuser)
|
|
124
|
+
* [10. Start a new app called `home`](#10-start-a-new-app-called-home)
|
|
125
|
+
* [12. Run the development server](#12-run-the-development-server)
|
|
126
|
+
* [Configure URLs](#configure-urls)
|
|
127
|
+
* [Configure your Settings.py file](#configure-your-settingspy-file)
|
|
128
|
+
* [16. Set up the file-based email backend (for testing)](#16-set-up-the-file-based-email-backend-for-testing)
|
|
129
|
+
* [17. Run the system checks](#17-run-the-system-checks)
|
|
130
|
+
* [17a. Generate a recovery code](#17a-generate-a-recovery-code)
|
|
131
|
+
* [Run Services](#run-services)
|
|
132
|
+
* [Create a Home View](#create-a-home-view)
|
|
133
|
+
* [Access the Admin](#access-the-admin)
|
|
134
|
+
* [Access the Recovery Codes page dashboard](#access-the-recovery-codes-page-dashboard)
|
|
135
|
+
* [Code Generation](#code-generation)
|
|
136
|
+
* [Verifying Generated Codes](#verifying-generated-codes)
|
|
137
|
+
* [Downloaded and Emailed Code](#downloaded-and-emailed-code)
|
|
138
|
+
* [Invalidating or Deleting a Code](#invalidating-or-deleting-a-code)
|
|
139
|
+
* [Viewing the Code Batch History](#viewing-the-code-batch-history)
|
|
140
|
+
* [Logout of the application](#logout-of-the-application)
|
|
141
|
+
* [Failed Attempts and Rate Limiting](#failed-attempts-and-rate-limiting)
|
|
142
|
+
* [Successful Login](#successful-login)
|
|
143
|
+
* [Existing Project Setup](#2-existing-project-setup)
|
|
144
|
+
* [Scheduling a Code Removal Using Django-Q](#scheduling-a-code-removal-using-django-q)
|
|
145
|
+
* [Warning ⚠](#warning)
|
|
146
|
+
* [Known Issues](#known-issues)
|
|
147
|
+
* [License](#license)
|
|
148
|
+
* [Support](#support)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## Requirements & Key Technologies
|
|
154
|
+
|
|
155
|
+
- **Python 3.10+**
|
|
156
|
+
This library uses [Structural Pattern Matching](https://docs.python.org/3/whatsnew/3.10.html#structural-pattern-matching), introduced in Python 3.10, via the `match`-`case` syntax.
|
|
157
|
+
|
|
158
|
+
- **Django 5.2+**
|
|
159
|
+
The project is built and tested using Django 5.2, which has Long-Term Support (LTS).
|
|
160
|
+
Using an earlier version, such as Django 4.1.x, may work in some cases but is **not guaranteed** and could potentially break the application, since it has only been tested with Django 5.2.
|
|
161
|
+
|
|
162
|
+
### Why Python 3.10?
|
|
163
|
+
|
|
164
|
+
The project relies on the `match`-`case` syntax, which provides a more readable and expressive way to handle complex conditional logic.
|
|
165
|
+
|
|
166
|
+
## Key Technologies and Libraries Used
|
|
167
|
+
|
|
168
|
+
- **EmailSender**: a lightweight but powerful library for sending chainable rich emails with templates. [Find out more](https://github.com/EgbieAndersonUku1/django-email-sender)
|
|
169
|
+
- **EmailSenderLogger**: a lightweight but powerful library for logging, emails sent by EmailSender. [Find out more](https://github.com/EgbieAndersonUku1/django-email-sender)
|
|
170
|
+
- **Django-q**: an asynchronous task manager used for processing background tasks, including using EmailSender to send emails.
|
|
171
|
+
- **JavaScript (JS)**: for interactivity and fetch requests.
|
|
172
|
+
- **HTML**: for structuring content.
|
|
173
|
+
- **CSS**: for styling the user interface.
|
|
174
|
+
|
|
175
|
+
---
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
### Key Features
|
|
181
|
+
|
|
182
|
+
* Generate recovery codes in configurable batches.
|
|
183
|
+
* Track recovery codes individually:
|
|
184
|
+
* Mark codes as used, inactive, or scheduled for deletion.
|
|
185
|
+
* User the 2FA code to login which becomes invalid after a single use
|
|
186
|
+
* Batch management:
|
|
187
|
+
* Track issued and removed codes per batch.
|
|
188
|
+
* Statuses for active, invalidated, or deleted batches.
|
|
189
|
+
* Login
|
|
190
|
+
* Login in using your 2FA Recovery Backup code
|
|
191
|
+
* Asynchronous cleanup using Django-Q:
|
|
192
|
+
* Delete expired or invalid codes without locking the database.
|
|
193
|
+
* Scheduler allows admins to set cleanup intervals (e.g., every 2 days) without touching code.
|
|
194
|
+
* Optional options to email the report to the admin
|
|
195
|
+
* Optional option to store user emails (Whenever the user send themselves a code) in the database
|
|
196
|
+
* Optional scheduler to delete Recovery code Audit model (tracks the users, the number of code issued, time issued, etc)
|
|
197
|
+
* Secure storage:
|
|
198
|
+
* Codes are hashed before saving; no plaintext storage.
|
|
199
|
+
* Extensible utilities for generating and verifying codes.
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
### How It Differs From A Full Two-Factor Authentication Apps?
|
|
204
|
+
|
|
205
|
+
`django_auth_recovery_codes` is designed **solely for recovery codes**, offering fine-grained control, asynchronous management, and admin-friendly batch handling.
|
|
206
|
+
|
|
207
|
+
* ### User UI interface
|
|
208
|
+
* Dedicated login interface page to enter your email and 2FA recovery code
|
|
209
|
+
* Dashboard that allows the user to:
|
|
210
|
+
* Generate a batch of 2FA recovery codes (default=10 generated, configurable via settings flags) with expiry date or doesn't expiry
|
|
211
|
+
* Regenerate code (Uses brute force rate limiter with a penalty that increases the wait time if codes is regenerated within that time window)
|
|
212
|
+
* Email, Delete or Download entire codes via the buttons
|
|
213
|
+
* One-time verification code setup form
|
|
214
|
+
* A one-time setup that allows the user to enter a 2FA code after generation (for the first time) to verify that the backend has configured it correctly without marking the code as used. The tests indicate whether the code has been set up correctly.
|
|
215
|
+
|
|
216
|
+
* Invalidate or delete a code via interactive form
|
|
217
|
+
* view batch histories
|
|
218
|
+
|
|
219
|
+
#### Example a single recovery code batch View
|
|
220
|
+
|
|
221
|
+
| Field | Value |
|
|
222
|
+
| ------------------------- | ------------------------------------ |
|
|
223
|
+
| Batch ID | 8C2655A1-8F14-4B56-AEC8-7DDA72F887A4 |
|
|
224
|
+
| Expiry info | Active |
|
|
225
|
+
| User | Egbie |
|
|
226
|
+
| Date issued | 23 Sept. 2025, |
|
|
227
|
+
| Date modified | 23 Sept. 2025, |
|
|
228
|
+
| Number of codes issued | 10 |
|
|
229
|
+
| Number of codes used | 0 |
|
|
230
|
+
| Number of deactivated | 0 |
|
|
231
|
+
| Number of removed | 0 |
|
|
232
|
+
| Has generated code batch | True |
|
|
233
|
+
| Has viewed code batch | True |
|
|
234
|
+
| Has downloaded code batch | False |
|
|
235
|
+
| Has emailed code batch | False |
|
|
236
|
+
|
|
237
|
+
* Pagination to split the batch recovery codes history on different pages instead of one long page
|
|
238
|
+
|
|
239
|
+
* Focuses **exclusively on recovery codes**, rather than full 2FA flows.
|
|
240
|
+
* Built-in **logger configuration** which can be imported into settings or merged with an existing logger.
|
|
241
|
+
|
|
242
|
+
* ### Asynchronous Usage
|
|
243
|
+
|
|
244
|
+
* Built with **asynchronous usage** using Django-Q:
|
|
245
|
+
* Automatically deletes expired or invalid codes when uses with scheduler.
|
|
246
|
+
* On a successful delete scheduler generates an audit report of the number of deleted codes and sends it to admin via email.
|
|
247
|
+
* Email sending can be configured to run **asynchronous or synchronous** depending on your environment:
|
|
248
|
+
* `DEBUG = True` : uses synchronous sending (easy for development or testing).
|
|
249
|
+
* `DEBUG = False` : uses asynchronous sending (recommended for production; doesn’t block the application while sending in the background).
|
|
250
|
+
|
|
251
|
+
* ### Admin interface
|
|
252
|
+
* **Admin-friendly view interface code management**, including the ability to scheduler deletion for expired or invalid codes e.g (every 2 days, etc) or even the audit history.
|
|
253
|
+
* ### Code tracking
|
|
254
|
+
* **Individual code tracking** with granular control over each code.
|
|
255
|
+
* ### Flag configuration
|
|
256
|
+
* Optional configuration to turn **logger** on or off to track the actions of users generating recovery codes, email sent, various aspect of the models, etc.
|
|
257
|
+
* Optional **storage of user email** in the model for auditing purposes.
|
|
258
|
+
* ### Caching
|
|
259
|
+
* Utilises **caching** (Redis, Memcached, default cache, etc) for
|
|
260
|
+
* Pagination and page reads
|
|
261
|
+
* Brute-force rate limiting
|
|
262
|
+
* Other database-heavy operations
|
|
263
|
+
* Reduces database hits until cache expires or updates are made.
|
|
264
|
+
|
|
265
|
+
* ### Email and logging capabilities
|
|
266
|
+
* **Email sending capabilities** via `EmailSender` library.
|
|
267
|
+
* **Email logging** via `EmailSenderLogger` library.
|
|
268
|
+
|
|
269
|
+
* ### Rate limiter
|
|
270
|
+
* **Maximum login attempt control** with a brute-force rate limiter:
|
|
271
|
+
* Configurable penalty wait times that increase if a user retries during the wait window.
|
|
272
|
+
* **Brute-force rate limiter** for code generation:
|
|
273
|
+
* Prevents spam and imposes a penalty if the user attempts regeneration too soon.
|
|
274
|
+
|
|
275
|
+
* ### Code generation attribrutes
|
|
276
|
+
* Generate **codes that expire** or have no expiry.
|
|
277
|
+
* Allow users to **download or email codes** (one per batch).
|
|
278
|
+
* **Invalidate, delete a single code or an entire batch** easily.
|
|
279
|
+
* Users can **view batch details**, e.g., number of codes generated, emailed, or downloaded.
|
|
280
|
+
|
|
281
|
+
* ### Configurable flags for developer
|
|
282
|
+
|
|
283
|
+
#### Configuration flags settings for the Django Auth Recovery code app
|
|
284
|
+
|
|
285
|
+
```python
|
|
286
|
+
DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL =
|
|
287
|
+
DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER =
|
|
288
|
+
DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME =
|
|
289
|
+
DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG =
|
|
290
|
+
|
|
291
|
+
DJANGO_AUTH_RECOVERY_KEY =
|
|
292
|
+
|
|
293
|
+
DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP =
|
|
294
|
+
DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS =
|
|
295
|
+
DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS =
|
|
296
|
+
DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER =
|
|
297
|
+
|
|
298
|
+
DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE =
|
|
299
|
+
DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN =
|
|
300
|
+
DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT =
|
|
301
|
+
DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER =
|
|
302
|
+
DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS =
|
|
303
|
+
|
|
304
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX =
|
|
305
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN =
|
|
306
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL =
|
|
307
|
+
|
|
308
|
+
DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE =
|
|
309
|
+
DJANGO_AUTH_RECOVERY_CODE_PER_PAGE =
|
|
310
|
+
DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE =
|
|
311
|
+
DJANGO_AUTH_RECOVERY_CODES_MAX_DELETIONS_PER_RUN =
|
|
312
|
+
|
|
313
|
+
DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME =
|
|
314
|
+
DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT =
|
|
315
|
+
|
|
316
|
+
DJANGO_AUTH_RECOVERY_CODES_SITE_NAME =
|
|
317
|
+
DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT =
|
|
318
|
+
|
|
319
|
+
DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG =
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
```
|
|
323
|
+
[⬆ Back to Top](#top)
|
|
324
|
+
|
|
325
|
+
---
|
|
326
|
+
|
|
327
|
+
## Django 2FA Recovery Code Generator
|
|
328
|
+
|
|
329
|
+
### **Security Overview**
|
|
330
|
+
|
|
331
|
+
These 2FA recovery codes generated are designed to be **extremely secure** and practically impossible to guess. Protects against Brute force, Rainbow attacks and timed attacks
|
|
332
|
+
|
|
333
|
+
### **Code Format**
|
|
334
|
+
|
|
335
|
+
```
|
|
336
|
+
XXXXXX-XXXXXX-XXXXXX-XXXXXX-XXXXXX-XXXXXX
|
|
337
|
+
```
|
|
338
|
+
|
|
339
|
+
* **6 groups** of **6 characters** each (36 characters)
|
|
340
|
+
* **Alphabet:** 60 characters (`A–Z`, `a–z`, `2–9`), the app avoiding confusing characters like `0` vs `O` and `1` vs `l`
|
|
341
|
+
* **Cryptographically secure randomness** ensures codes are unpredictable
|
|
342
|
+
|
|
343
|
+
---
|
|
344
|
+
|
|
345
|
+
### **Entropy**
|
|
346
|
+
|
|
347
|
+
Entropy measures how unpredictable a code is, the higher the entropy, the harder it is to guess.
|
|
348
|
+
|
|
349
|
+
* **Entropy per character:**
|
|
350
|
+
|
|
351
|
+
$$
|
|
352
|
+
\log_2(60) \approx 5.91 \text{ bits}
|
|
353
|
+
$$
|
|
354
|
+
|
|
355
|
+
* **Entropy per group (6 characters):**
|
|
356
|
+
|
|
357
|
+
$$
|
|
358
|
+
6 \times 5.91 \approx 35.5 \text{ bits}
|
|
359
|
+
$$
|
|
360
|
+
|
|
361
|
+
* **Total entropy for the full 36-character code:**
|
|
362
|
+
|
|
363
|
+
$$
|
|
364
|
+
36 \times 5.91 \approx 213 \text{ bits}
|
|
365
|
+
$$
|
|
366
|
+
|
|
367
|
+
> For comparison, AES-128 encryption has 128 bits of entropy. These recovery codes are **much stronger** in terms of guessing resistance.
|
|
368
|
+
|
|
369
|
+
---
|
|
370
|
+
|
|
371
|
+
### **Total Combinations**
|
|
372
|
+
|
|
373
|
+
With 36 characters chosen from 60 possibilities each:
|
|
374
|
+
|
|
375
|
+
$$
|
|
376
|
+
60^{36} \approx 2 \times 10^{63} \text{ unique codes}
|
|
377
|
+
$$
|
|
378
|
+
|
|
379
|
+
This astronomical number of possibilities ensures that **guessing a valid code is virtually impossible**.
|
|
380
|
+
|
|
381
|
+
---
|
|
382
|
+
|
|
383
|
+
### **Brute-Force Resistance**
|
|
384
|
+
|
|
385
|
+
Even with a supercomputer that tests codes extremely quickly, brute-forcing a valid recovery code is **completely impractical**:
|
|
386
|
+
|
|
387
|
+
| Attack Speed | Seconds | Years |
|
|
388
|
+
| ------------------------- | --------- | --------- |
|
|
389
|
+
| 1 billion/sec (10^9) | 2 × 10^54 | 6 × 10^46 |
|
|
390
|
+
| 1 trillion/sec (10^12) | 2 × 10^51 | 6 × 10^43 |
|
|
391
|
+
| 1 quintillion/sec (10^18) | 2 × 10^45 | 6 × 10^37 |
|
|
392
|
+
|
|
393
|
+
> **For comparison:** the age of the universe is only \~1.4 × 10^10 years. Even a computer testing a **quintillion codes per second** would need far longer than the universe has existed to find a valid code.
|
|
394
|
+
|
|
395
|
+
---
|
|
396
|
+
|
|
397
|
+
### Prespective?
|
|
398
|
+
|
|
399
|
+
### What this means?
|
|
400
|
+
|
|
401
|
+
* Each character is chosen randomly from 60 possibilities.
|
|
402
|
+
* With 36 characters, the number of possible codes is **more than 2 followed by 63 zeros**.
|
|
403
|
+
* Each recovery code has **≈213 bits of entropy**, making it **extremely resistant to guessing or brute-force attacks**.
|
|
404
|
+
* That’s **so many possibilities** that even the fastest computers would take **longer than the age of the universe** to try them all.
|
|
405
|
+
* The vast number of possible codes ensures that **every code is unique and unpredictable**.
|
|
406
|
+
* This makes guessing a valid code virtually impossible and this is without brute rate limiter, with a rate limiter (which this app uses it is virtually impossible).
|
|
407
|
+
|
|
408
|
+
> In short: it’s **far stronger than standard encryption like AES-128**.
|
|
409
|
+
|
|
410
|
+
<div align="center">
|
|
411
|
+
<img src="django_auth_recovery_codes/docs/images/security-strength.png" alt="2FA login form" width="400">
|
|
412
|
+
</div>
|
|
413
|
+
|
|
414
|
+
> You can trust these recovery codes to keep your account safe even against attackers with enormous computational power.
|
|
415
|
+
|
|
416
|
+
[⬆ Back to Top](#top)
|
|
417
|
+
|
|
418
|
+
---
|
|
419
|
+
|
|
420
|
+
### Developer Appendix
|
|
421
|
+
|
|
422
|
+
```python
|
|
423
|
+
import math
|
|
424
|
+
|
|
425
|
+
def brute_force_time(alphabet_size=52, chars_per_group=6, groups=6, guesses_per_second=10**9):
|
|
426
|
+
total_combinations = alphabet_size ** (chars_per_group * groups)
|
|
427
|
+
seconds = total_combinations / guesses_per_second
|
|
428
|
+
years = seconds / (60 * 60 * 24 * 365)
|
|
429
|
+
return total_combinations, seconds, years
|
|
430
|
+
|
|
431
|
+
combos, seconds, years = brute_force_time()
|
|
432
|
+
print(f"Total combinations: {combos:e}")
|
|
433
|
+
print(f"Seconds to crack: {seconds:e}")
|
|
434
|
+
print(f"Years to crack: {years:e}")
|
|
435
|
+
```
|
|
436
|
+
|
|
437
|
+
**Example output:**
|
|
438
|
+
|
|
439
|
+
```
|
|
440
|
+
Total combinations: 3.292e+61
|
|
441
|
+
Seconds to crack: 3.292e+52
|
|
442
|
+
Years to crack: 1.043e+45
|
|
443
|
+
```
|
|
444
|
+
|
|
445
|
+
---
|
|
446
|
+
|
|
447
|
+
#### Summary
|
|
448
|
+
|
|
449
|
+
* **212.8 bits recovery codes** → astronomically secure
|
|
450
|
+
* **≈3.3 × 10^61 combinations** → impossible to brute-force
|
|
451
|
+
* Even with a supercomputer, cracking a single code would take **trillions of times longer than the age of the universe**
|
|
452
|
+
* With **rate limiting**, brute-force becomes completely infeasible
|
|
453
|
+
|
|
454
|
+
[⬆ Back to Top](#top)
|
|
455
|
+
|
|
456
|
+
---
|
|
457
|
+
|
|
458
|
+
#### Use Cases
|
|
459
|
+
|
|
460
|
+
* Integrate with any existing 2FA system to provide a secure set of recovery codes.
|
|
461
|
+
* Large-scale systems where thousands of users might need recovery codes, ensuring database performance is not impacted.
|
|
462
|
+
* Admin-friendly management of recovery codes, including scheduling cleanups without developer intervention.
|
|
463
|
+
* Systems requiring secure, hashed storage of recovery codes while retaining full control over their lifecycle.
|
|
464
|
+
|
|
465
|
+
[⬆ Back to Top](#top)
|
|
466
|
+
|
|
467
|
+
---
|
|
468
|
+
|
|
469
|
+
## Installation
|
|
470
|
+
|
|
471
|
+
```bash
|
|
472
|
+
pip install django_auth_recovery_codes
|
|
473
|
+
```
|
|
474
|
+
|
|
475
|
+
```python
|
|
476
|
+
# settings.py
|
|
477
|
+
INSTALLED_APPS = [
|
|
478
|
+
...
|
|
479
|
+
'django_2fa_recovery_codes',
|
|
480
|
+
'django_q',
|
|
481
|
+
]
|
|
482
|
+
```
|
|
483
|
+
|
|
484
|
+
---
|
|
485
|
+
|
|
486
|
+
## Quick Example
|
|
487
|
+
|
|
488
|
+
```python
|
|
489
|
+
from django_2fa_recovery_codes.models import RecoveryCodeBatch
|
|
490
|
+
|
|
491
|
+
# Create a batch of 10 recovery codes for a user
|
|
492
|
+
plain_codes, batch_instance = RecoveryCodeBatch.create_recovery_batch(user, days_to_expire=30)
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
```
|
|
496
|
+
|
|
497
|
+
---
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
## How to Use 2FA Recovery Codes
|
|
501
|
+
|
|
502
|
+
### Setting up the Cache or using the default cache
|
|
503
|
+
|
|
504
|
+
To use this application, you can either set up a permanent cache system in the backend or allow it to use the default cache.
|
|
505
|
+
|
|
506
|
+
### Why is a cache necessary for this app?
|
|
507
|
+
|
|
508
|
+
This application is designed to be scalable, meaning it can support anything from a few users to thousands without compromising performance or putting unnecessary load on the database. It relies heavily on caching:
|
|
509
|
+
|
|
510
|
+
- Everything from page reads
|
|
511
|
+
- Pagination
|
|
512
|
+
- Brute-force rate limiting, waiting time for failed login attempts to the cooling period for regenerating new codes is computed and cached.
|
|
513
|
+
- Database-heavy operations
|
|
514
|
+
|
|
515
|
+
The database is only accessed when the cache expires or an update is made e.g the user uses, deletes or invalidates a code.
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
#### Cache Expiry and TTL Settings
|
|
519
|
+
|
|
520
|
+
Cache entries have a configurable **Time-To-Live (TTL)**, which determines how long the data is stored before being refreshed. The following settings are used by default:
|
|
521
|
+
|
|
522
|
+
```python
|
|
523
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL = 300 # Default 5 minutes
|
|
524
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN = 60 # Minimum 1 minute
|
|
525
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX = 3600 # Maximum 1 hour
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
```
|
|
529
|
+
|
|
530
|
+
These settings **can be adjusted by the developer** in the Django settings to balance performance with data freshness. This ensures cache expiry times remain within safe and predictable bounds.
|
|
531
|
+
|
|
532
|
+
### How does the cache work?
|
|
533
|
+
|
|
534
|
+
The cache helps prevent issues such as **race conditions** and **stale data**.
|
|
535
|
+
|
|
536
|
+
#### What is a race condition?
|
|
537
|
+
|
|
538
|
+
A race condition occurs when two or more processes try to modify the same data at the same time, leading to unpredictable results.
|
|
539
|
+
|
|
540
|
+
**Example:**
|
|
541
|
+
|
|
542
|
+
Imagine two requests to generate a new 2FA recovery code arrive simultaneously for the same user. If both try to write to the cache at the same time, one could overwrite the other, resulting in lost data. To prevent this, the application ensures that only one process can write to a specific cache key at a time.
|
|
543
|
+
|
|
544
|
+
This mechanism guarantees that cache data remains consistent, preventing conflicts and ensuring that recovery codes are always valid and reliable.
|
|
545
|
+
|
|
546
|
+
---
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
### Using Pagination and Caching
|
|
550
|
+
|
|
551
|
+
The application uses a **TTL cache** for paginated data. Without caching, every page refresh or navigation triggers a database query to fetch the relevant objects, which can be inefficient.
|
|
552
|
+
|
|
553
|
+
With the TTL cache (how long an data is cached is determined by the setting flags, default five minutes):
|
|
554
|
+
|
|
555
|
+
* Paginated query results (e.g., a history of recovery codes) are stored in memory for a set duration.
|
|
556
|
+
* While the cache is valid, page refreshes or navigation read from the cache instead of hitting the database.
|
|
557
|
+
* When underlying data changes, for example, a new batch of codes is generated, the database and the cache is updated, and the newly updated data from the cache is used. This ensures that subsequent requests are up-to-date.
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
### What cache should I use?
|
|
561
|
+
|
|
562
|
+
That depends entirely on you. The application is designed to **use caching**, but it’s backend-agnostic. It will work with any cache supported by Django (e.g. Redis, Memcached, or in-memory cache). It assumes no cache over the other and leaves it to the developer to decide which one to use under the hood.
|
|
563
|
+
|
|
564
|
+
This flexibility is possible because the application only interacts with **Django’s cache framework abstraction**. Under the hood, all cache operations (`cache.set`, `cache.get`, etc.) are handled by Django. The actual backend Redis, Memcached, or in-memory is just a plug-in configured in `settings.py`.
|
|
565
|
+
|
|
566
|
+
* **Redis** : A common choice for production, especially in distributed systems. It supports persistence, clustering, and advanced features like pub/sub.
|
|
567
|
+
* **Memcached** : Lightweight and very fast, best for simple key/value caching when persistence is not required.
|
|
568
|
+
* **In-memory cache** : Used by default if no backend is configured. Easiest to set up, but limited to a single process and **wipes entirely when the application restarts**, so best for development or small-scale setups.
|
|
569
|
+
|
|
570
|
+
#### Example configurations (Django)
|
|
571
|
+
|
|
572
|
+
```python
|
|
573
|
+
# settings.py
|
|
574
|
+
|
|
575
|
+
# Redis
|
|
576
|
+
CACHES = {
|
|
577
|
+
"default": {
|
|
578
|
+
"BACKEND": "django.core.cache.backends.redis.RedisCache",
|
|
579
|
+
"LOCATION": "redis://127.0.0.1:6379/1",
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
# Memcached
|
|
584
|
+
CACHES = {
|
|
585
|
+
"default": {
|
|
586
|
+
"BACKEND": "django.core.cache.backends.memcached.MemcachedCache",
|
|
587
|
+
"LOCATION": "127.0.0.1:11211",
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
# In-memory (local memory cache, default if none configured)
|
|
592
|
+
CACHES = {
|
|
593
|
+
"default": {
|
|
594
|
+
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
|
|
595
|
+
"LOCATION": "unique-snowflake",
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
```
|
|
599
|
+
|
|
600
|
+
#### Example usage
|
|
601
|
+
|
|
602
|
+
```python
|
|
603
|
+
from django.core.cache import cache
|
|
604
|
+
|
|
605
|
+
# Store a value for 5 minutes
|
|
606
|
+
cache.set("greeting", "Hello, world!", timeout=300)
|
|
607
|
+
|
|
608
|
+
# Retrieve the value
|
|
609
|
+
message = cache.get("greeting")
|
|
610
|
+
print(message) # "Hello, world!"
|
|
611
|
+
```
|
|
612
|
+
|
|
613
|
+
### Using Django Cache Without Configuring a Backend
|
|
614
|
+
|
|
615
|
+
Even if you don’t explicitly define a cache backend in `settings.py`, Django provides a **default in-memory cache (`LocMemCache`)** which the application uses by using the handlers `cache.get()` and `cache.set()` via a specifically designed cache functions:
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
Key points:
|
|
619
|
+
|
|
620
|
+
1. Django uses `LocMemCache` internally if `CACHES` is not defined.
|
|
621
|
+
2. If a in-memory cache is used (nothing added in the settings) when Django is restarted, the cache is automatically cleared by Django
|
|
622
|
+
3. Each worker process has its own separate cache.
|
|
623
|
+
|
|
624
|
+
---
|
|
625
|
+
|
|
626
|
+
In short: the app is **built to use caching by default**, but if no backend is configured it automatically falls back to an in-memory cache. However, because it is an in-memory when the Django sever restarts it **resets the cache**. For production, a persistent backend like Redis is recommended.
|
|
627
|
+
|
|
628
|
+
[⬆ Back to Top](#top)
|
|
629
|
+
|
|
630
|
+
---
|
|
631
|
+
|
|
632
|
+
## Using and setting up Django-q
|
|
633
|
+
|
|
634
|
+
### What is Django-Q?
|
|
635
|
+
|
|
636
|
+
**Django-Q** is a task queue and asynchronous job manager for Django. It allows your application to run tasks **outside the normal request/response cycle**, this is useful for background processing, scheduling, or parallel execution.
|
|
637
|
+
|
|
638
|
+
### Key features include:
|
|
639
|
+
|
|
640
|
+
* Asynchronous Task Execution
|
|
641
|
+
|
|
642
|
+
Allows tasks to run in the background so users don’t have to wait for them to complete, for example:
|
|
643
|
+
|
|
644
|
+
* Sending emails
|
|
645
|
+
* Generating reports
|
|
646
|
+
* Processing files
|
|
647
|
+
* Performing API requests
|
|
648
|
+
* Deleting tasks
|
|
649
|
+
|
|
650
|
+
### Scheduled Tasks
|
|
651
|
+
|
|
652
|
+
Supports scheduling tasks similar to cron jobs:
|
|
653
|
+
|
|
654
|
+
* One-off tasks at a specific time
|
|
655
|
+
* Recurring tasks (daily, weekly, etc.)
|
|
656
|
+
|
|
657
|
+
### Multiple Brokers
|
|
658
|
+
|
|
659
|
+
Tasks can be stored in different backends (brokers):
|
|
660
|
+
|
|
661
|
+
* **Django ORM (default)**: stored in the database
|
|
662
|
+
* **Redis**: faster and suitable for high-performance needs
|
|
663
|
+
* Other databases (PostgreSQL, MySQL)
|
|
664
|
+
|
|
665
|
+
### Cluster Mode
|
|
666
|
+
|
|
667
|
+
Runs multiple worker processes in parallel for better performance and scalability.
|
|
668
|
+
|
|
669
|
+
### Result Storage
|
|
670
|
+
|
|
671
|
+
Stores task results so you can check completion status and retrieve outputs.
|
|
672
|
+
|
|
673
|
+
---
|
|
674
|
+
|
|
675
|
+
To run the worker cluster, use:
|
|
676
|
+
|
|
677
|
+
```bash
|
|
678
|
+
python manage.py qcluster
|
|
679
|
+
```
|
|
680
|
+
|
|
681
|
+
---
|
|
682
|
+
|
|
683
|
+
## Django-Q vs Celery and why Django Auth Recovery codes use Django-q
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
Both Django-Q and Celery are task queues, but they differ in complexity and use cases:
|
|
687
|
+
|
|
688
|
+
| Feature | Django-Q | Celery |
|
|
689
|
+
| ------------------------- | -------- | -------- |
|
|
690
|
+
| Async tasks | ✅ | ✅ |
|
|
691
|
+
| Scheduled tasks | ✅ | ✅ |
|
|
692
|
+
| Periodic/recurring tasks | ✅ | ✅ |
|
|
693
|
+
| Multiple brokers | ✅ | ✅ |
|
|
694
|
+
| Result backend | ✅ | ✅ |
|
|
695
|
+
| Retry/failure handling | Basic | Advanced |
|
|
696
|
+
| Task chaining & workflows | Limited | ✅ |
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
**Key differences**:
|
|
700
|
+
|
|
701
|
+
* **Django-Q** is simpler, uses Django’s ORM as a broker by default, and is ideal for small to medium projects.
|
|
702
|
+
* **Celery** is more complex, requires an external broker like Redis or RabbitMQ, and is better suited for large-scale, high-load projects with advanced workflows.
|
|
703
|
+
|
|
704
|
+
---
|
|
705
|
+
|
|
706
|
+
## Why does this application use Django-Q?
|
|
707
|
+
|
|
708
|
+
`django_auth_recovery_codes` uses Django-Q to handle background tasks such as:
|
|
709
|
+
|
|
710
|
+
1. When the user email themselves a copy of their plaintext code
|
|
711
|
+
2. When the admin runs or sets up scheduler (once, daily, weekly, etc) to delete invalid or expired codes, a report is also generated and sent to the admin via email
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
Without using Django-q whenever a user deletes their code or sends a copy of their plaintext code it will block normal request/response, and if multiple users are deleting their codes at the same time it can causes problems in the database by. With this it ensures that these tasks do not block normal request/response cycles and can run efficiently in the background without impacting the user experience.
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
---
|
|
718
|
+
|
|
719
|
+
### ⚠️ Note on Batch Deletion
|
|
720
|
+
|
|
721
|
+
Even though expired codes are deleted asynchronously, deleting **millions of codes at once** can still cause performance issues such as long transactions or database locks.
|
|
722
|
+
|
|
723
|
+
To avoid this, `django_auth_recovery_codes` supports **batch deletion** via the configurable setting:
|
|
724
|
+
|
|
725
|
+
```python
|
|
726
|
+
# settings.py
|
|
727
|
+
Django Auth Recovery Codes_BATCH_DELETE_SIZE = 1000
|
|
728
|
+
```
|
|
729
|
+
|
|
730
|
+
* If set, expired codes will be deleted in **chunks of this size** (e.g. 1000 at a time).
|
|
731
|
+
* If not set, all expired codes are deleted in a single query.
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
[⬆ Back to Top](#top)
|
|
735
|
+
|
|
736
|
+
---
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
### Using Django-Q with `django_auth_recovery_codes`
|
|
740
|
+
|
|
741
|
+
Django Auth Recovery Codes provides a utility task to clean up expired recovery codes, but since this is a reusable app, the scheduling of this task is **left up to you**, depending on your project’s needs and dataset size.
|
|
742
|
+
|
|
743
|
+
---
|
|
744
|
+
|
|
745
|
+
####. Scheduling the Task with Django-Q via the admin interface `Recovery code batch scheduler`
|
|
746
|
+
|
|
747
|
+
You can schedule this cleanup task to run at whatever time that that suits via the admin. For example every date at a given time.
|
|
748
|
+
|
|
749
|
+
See the [Django-Q scheduling docs](https://django-q.readthedocs.io/en/latest/schedules.html) for more options.
|
|
750
|
+
|
|
751
|
+
---
|
|
752
|
+
|
|
753
|
+
---
|
|
754
|
+
|
|
755
|
+
### How does Django-Q delete codes if the user deletes them from the frontend?
|
|
756
|
+
|
|
757
|
+
`django_auth_recovery_codes` does **not** immediately delete a code when the user deletes it from the frontend. Instead, it performs a **soft delete**, the code is marked as invalid and can no longer be used. From the user’s perspective, the code is “gone,” but the actual row still exists in the database until the cleanup task runs.
|
|
758
|
+
|
|
759
|
+
When the Django-Q scheduler task runs (either automatically or triggered by the admin), any codes marked for deletion are permanently removed in the background (in batches).
|
|
760
|
+
|
|
761
|
+
---
|
|
762
|
+
|
|
763
|
+
### Why not delete the code immediately?
|
|
764
|
+
|
|
765
|
+
Since this is a **reusable app** that can be plugged into any Django projects of any size (small apps or large-scale environments), immediate deletion is avoided for two key reasons:
|
|
766
|
+
|
|
767
|
+
1. **Database contention**
|
|
768
|
+
In environments with thousands of users, potential many codes could be deleted at the same time. Deleting them synchronously could lock rows or put heavy strain on the database.
|
|
769
|
+
|
|
770
|
+
2. **User experience**
|
|
771
|
+
Immediate deletion happens in the request/response cycle. If many users delete codes at once, their requests would take longer, and the frontend might “freeze” while deletions are processed leading to a poor UX.
|
|
772
|
+
|
|
773
|
+
---
|
|
774
|
+
|
|
775
|
+
### Benefits of using Django-Q
|
|
776
|
+
|
|
777
|
+
By offloading deletion to Django-Q:
|
|
778
|
+
|
|
779
|
+
* Deletion is handled as a **background task**, so it doesn’t block the frontend.
|
|
780
|
+
* The database can process deletions more efficiently, especially when using **batch deletion**.
|
|
781
|
+
* Users get a smoother experience ,the code disappears instantly from their view, while the actual cleanup happens safely in the background.
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
### Deletion flow
|
|
785
|
+
|
|
786
|
+
<div align="center">
|
|
787
|
+
|
|
788
|
+
<img src="django_auth_recovery_codes/docs/images/deletion_flowchart.png" alt="Code deletion flowchart" width="300">
|
|
789
|
+
|
|
790
|
+
</div>
|
|
791
|
+
---
|
|
792
|
+
|
|
793
|
+
### Batch deletion configuration
|
|
794
|
+
|
|
795
|
+
For projects with very large datasets, batch deletion can be enabled via the `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` setting flag:
|
|
796
|
+
|
|
797
|
+
```python
|
|
798
|
+
# settings.py
|
|
799
|
+
DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE = 1000
|
|
800
|
+
```
|
|
801
|
+
|
|
802
|
+
* If set, expired or soft-deleted codes will be removed in chunks of this size.
|
|
803
|
+
* If not set, all deletions happen in a single query.
|
|
804
|
+
|
|
805
|
+
This approach provides flexibility, small apps can use one-shot deletes, while larger systems can safely handle deletions in manageable batches.
|
|
806
|
+
|
|
807
|
+
---
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
## Setting up Django-Q
|
|
811
|
+
|
|
812
|
+
The `django_auth_recovery_codes` library uses **Django-Q** internally. You don’t need to install it separately, but you must configure it in your Django project to ensure background tasks run properly.
|
|
813
|
+
|
|
814
|
+
---
|
|
815
|
+
|
|
816
|
+
### 1. Add Django-Q to Installed Apps
|
|
817
|
+
|
|
818
|
+
In your `settings.py`:
|
|
819
|
+
|
|
820
|
+
```python
|
|
821
|
+
INSTALLED_APPS = [
|
|
822
|
+
...
|
|
823
|
+
'django_q',
|
|
824
|
+
]
|
|
825
|
+
```
|
|
826
|
+
|
|
827
|
+
---
|
|
828
|
+
|
|
829
|
+
### 2. Configure the Q\_CLUSTER
|
|
830
|
+
|
|
831
|
+
Example configuration:
|
|
832
|
+
|
|
833
|
+
```python
|
|
834
|
+
Q_CLUSTER = {
|
|
835
|
+
'name': 'recovery_codes',
|
|
836
|
+
'workers': 2,
|
|
837
|
+
'timeout': 300, # Maximum time (seconds) a task can run
|
|
838
|
+
'retry': 600, # Retry after 10 minutes if a task fails (retry must be greater than timeout)
|
|
839
|
+
'recycle': 500, # Recycle workers after this many tasks
|
|
840
|
+
'compress': True, # Compress data for storage
|
|
841
|
+
'cpu_affinity': 1, # Assign workers to CPU cores
|
|
842
|
+
'save_limit': 250, # Maximum number of task results to store
|
|
843
|
+
'queue_limit': 500,# Maximum number of tasks in the queue
|
|
844
|
+
'orm': 'default', # Use the default database for task storage
|
|
845
|
+
}
|
|
846
|
+
```
|
|
847
|
+
|
|
848
|
+
For more configuration options, see the [official Django-Q documentation](https://django-q.readthedocs.io/en/latest/configure.html)
|
|
849
|
+
|
|
850
|
+
---
|
|
851
|
+
|
|
852
|
+
### 3. Running the Cluster
|
|
853
|
+
|
|
854
|
+
Don’t forget to start the Django-Q worker cluster so scheduled tasks actually run:
|
|
855
|
+
|
|
856
|
+
```bash
|
|
857
|
+
python manage.py qcluster
|
|
858
|
+
```
|
|
859
|
+
|
|
860
|
+
[⬆ Back to Top](#top)
|
|
861
|
+
|
|
862
|
+
---
|
|
863
|
+
|
|
864
|
+
## Django Auth Recovery flag settings
|
|
865
|
+
|
|
866
|
+
These environment variables configure the **Django Auth Recovery** system, controlling email notifications, audit logs, recovery code display, rate limiting, cooldowns, and code management.
|
|
867
|
+
|
|
868
|
+
---
|
|
869
|
+
### **📌 Cheat Sheet: Variable Categories**
|
|
870
|
+
|
|
871
|
+
| Icon | Category | Jump to Section |
|
|
872
|
+
| ---- | ------------------------- | ------------------------------------------------------ |
|
|
873
|
+
| 📧 | Email & Admin Settings | [Email & Admin Settings Flags](#email--admin-settings-flags) |
|
|
874
|
+
| 📝 | Audit & Logging | [Audit & Logging Setting Flags](#audit--logging-setting-flags) |
|
|
875
|
+
| 📄 | Code Display & Pagination | [Recovery Code Display Settings](#recovery-code-display-settings) |
|
|
876
|
+
| ⚡ | Rate Limiting & Caching | [Rate Limiting & Caching](#rate-limiting--caching) |
|
|
877
|
+
| ⏱ | Cooldown Settings | [Cooldown Settings Flags](#cooldown-settings-flags) |
|
|
878
|
+
| 🗂 | Code Management & Limits | [Code Management & Limits](#code-management--limits) |
|
|
879
|
+
|
|
880
|
+
> Quick visual roadmap to jump to any section in the README.
|
|
881
|
+
|
|
882
|
+
---
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
## Email & Admin Settings Flags
|
|
887
|
+
|
|
888
|
+
These settings control which email and admin accounts are used for recovery code notifications and scheduled operations.
|
|
889
|
+
|
|
890
|
+
| Variable | Description |
|
|
891
|
+
| ------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
892
|
+
| `DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL` | Admin email address used to receive generated reports after scheduled code deletions. |
|
|
893
|
+
| `DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER` | The email address used by the application to send emails, typically the same as `EMAIL_HOST_USER` in your Django settings. |
|
|
894
|
+
| `DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME` | Username associated with the admin account. |
|
|
895
|
+
|
|
896
|
+
### Example Usage
|
|
897
|
+
|
|
898
|
+
Suppose the settings are:
|
|
899
|
+
|
|
900
|
+
- `DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL = admin@example.com`
|
|
901
|
+
- `DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER = noreply@example.com`
|
|
902
|
+
- `DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME = admin`
|
|
903
|
+
|
|
904
|
+
Then the system will:
|
|
905
|
+
|
|
906
|
+
1. Send generated reports of scheduled recovery code deletions to `admin@example.com`.
|
|
907
|
+
2. Use `noreply@example.com` as the sender for all automated recovery code emails.
|
|
908
|
+
3. Associate actions with the admin username for auditing purposes.
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
---
|
|
912
|
+
|
|
913
|
+
## Audit & Logging Setting Flags
|
|
914
|
+
|
|
915
|
+
These settings control the auditing, logging, and retention of recovery code activity to ensure traceability and compliance.
|
|
916
|
+
|
|
917
|
+
| Variable | Description |
|
|
918
|
+
| ------------------------------------------------------------- | ------------------------------------------- |
|
|
919
|
+
| `DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP` | Enable automatic cleanup of audit logs. |
|
|
920
|
+
| `DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS` | Number of days to retain audit logs. |
|
|
921
|
+
| `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER` | Log scheduler operations during code purge. |
|
|
922
|
+
| `DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG` | Record activity of sent recovery emails. |
|
|
923
|
+
|
|
924
|
+
### Example Usage
|
|
925
|
+
|
|
926
|
+
Suppose the settings are:
|
|
927
|
+
|
|
928
|
+
- `DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP = True`
|
|
929
|
+
- `DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS = 90`
|
|
930
|
+
- `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER = True`
|
|
931
|
+
- `DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG = True`
|
|
932
|
+
|
|
933
|
+
Then the system will:
|
|
934
|
+
|
|
935
|
+
1. Automatically remove audit logs older than 90 days.
|
|
936
|
+
2. Record all recovery email activity in the logs.
|
|
937
|
+
3. Log any operations performed by the purge scheduler for transparency.
|
|
938
|
+
|
|
939
|
+
These flags help maintain a clean audit trail while ensuring important recovery-related actions are tracked.
|
|
940
|
+
|
|
941
|
+
---
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
## Recovery Code Display Settings
|
|
946
|
+
|
|
947
|
+
These settings control how recovery code batches are displayed in the user interface, including pagination and post-action redirection.
|
|
948
|
+
|
|
949
|
+
| Variable | Description |
|
|
950
|
+
| ----------------------------------------- | --------------------------------------------------------------------------- |
|
|
951
|
+
| `DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE` | Maximum number of expired batches, including the current active batch, that a user can view in their history section. |
|
|
952
|
+
| `DJANGO_AUTH_RECOVERY_CODE_PER_PAGE` | Number of recovery codes per page (pagination). |
|
|
953
|
+
| `DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT` | View users are redirected to after recovery actions. |
|
|
954
|
+
|
|
955
|
+
### Additional Explanation for `DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE`
|
|
956
|
+
|
|
957
|
+
This setting controls how many recovery code batches are displayed to the user, regardless of the total number stored in the database. Each batch contains multiple recovery codes.
|
|
958
|
+
|
|
959
|
+
#### Example
|
|
960
|
+
|
|
961
|
+
Suppose the settings are:
|
|
962
|
+
|
|
963
|
+
- `DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE = 20`
|
|
964
|
+
- `DJANGO_AUTH_RECOVERY_CODE_PER_PAGE = 5`
|
|
965
|
+
|
|
966
|
+
Then:
|
|
967
|
+
|
|
968
|
+
1. If a user has 100 recovery codes, only 20 batches will be shown in the interface.
|
|
969
|
+
2. With 5 batches per page, there will be 4 pages of recovery codes.
|
|
970
|
+
3. Users can navigate through these pages to see all visible batches.
|
|
971
|
+
|
|
972
|
+
For details on what a single batch includes, see [example: a single recovery code batch view](#example-a-single-recovery-code-batch-view).
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
### Additional Explanation for `DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT`
|
|
976
|
+
|
|
977
|
+
This setting controls **where the user is redirected after logging out**.
|
|
978
|
+
By default, the redirect points to the 2FA login page, but it can be changed to any page.
|
|
979
|
+
|
|
980
|
+
To redirect to another page, use the `name` reference of the view defined in your `urls.py`. For example:
|
|
981
|
+
|
|
982
|
+
```python
|
|
983
|
+
path("auth/recovery-codes/login/", views.login_user, name="login_user")
|
|
984
|
+
```
|
|
985
|
+
|
|
986
|
+
---
|
|
987
|
+
|
|
988
|
+
|
|
989
|
+
## Rate Limiting & Caching
|
|
990
|
+
|
|
991
|
+
These settings control rate limiting for recovery code requests and how caching is used to improve performance and prevent abuse.
|
|
992
|
+
|
|
993
|
+
| Variable | Description |
|
|
994
|
+
| -------------------------------------------------------- | --------------------------------------------------- |
|
|
995
|
+
| `DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE` | Enable caching for rate limiting recovery attempts. |
|
|
996
|
+
| `DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX` | Maximum cache value for rate limiter. |
|
|
997
|
+
| `DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN` | Minimum cache value for rate limiter. |
|
|
998
|
+
| `DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL` | Cache expiration time (seconds). |
|
|
999
|
+
|
|
1000
|
+
### Example
|
|
1001
|
+
|
|
1002
|
+
Suppose the settings are:
|
|
1003
|
+
|
|
1004
|
+
- `DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE = True`
|
|
1005
|
+
- `DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN = 1`
|
|
1006
|
+
- `DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX = 5`
|
|
1007
|
+
- `DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL = 60`
|
|
1008
|
+
|
|
1009
|
+
Then the system will:
|
|
1010
|
+
|
|
1011
|
+
1. Start counting recovery attempts from `CACHE_MIN = 1`.
|
|
1012
|
+
2. Increment the cached count with each recovery request, up to `CACHE_MAX = 5`.
|
|
1013
|
+
3. Reset the count automatically after `CACHE_TTL = 60` seconds.
|
|
1014
|
+
4. Use the cache to enforce rate limiting, preventing abuse and reducing database load.
|
|
1015
|
+
|
|
1016
|
+
|
|
1017
|
+
## Cooldown Settings Flags
|
|
1018
|
+
|
|
1019
|
+
These settings control the cooldown period applied when users request recovery codes repeatedly. The cooldown helps prevent abuse by increasing the wait time between requests.
|
|
1020
|
+
|
|
1021
|
+
| Variable | Description |
|
|
1022
|
+
| -------------------------------------------------- | ---------------------------------------------------- |
|
|
1023
|
+
| `DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN` | Base interval for recovery code cooldown (seconds). |
|
|
1024
|
+
| `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT`| Maximum cooldown threshold (seconds). |
|
|
1025
|
+
| `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER` | Multiplier applied to cooldown on repeated attempts.|
|
|
1026
|
+
|
|
1027
|
+
### Example
|
|
1028
|
+
|
|
1029
|
+
Suppose the settings are:
|
|
1030
|
+
|
|
1031
|
+
- `DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN = 30`
|
|
1032
|
+
- `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER = 2`
|
|
1033
|
+
- `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT = 300`
|
|
1034
|
+
|
|
1035
|
+
Then the cooldown progression for repeated recovery code requests would be:
|
|
1036
|
+
|
|
1037
|
+
1. First attempt: 30 seconds
|
|
1038
|
+
2. Second attempt: 30 × 2 = 60 seconds
|
|
1039
|
+
3. Third attempt: 60 × 2 = 120 seconds
|
|
1040
|
+
4. Fourth attempt: 120 × 2 = 240 seconds
|
|
1041
|
+
5. Fifth attempt: 240 × 2 = 480 seconds → capped at 300 seconds (cutoff)
|
|
1042
|
+
|
|
1043
|
+
This ensures the cooldown grows exponentially but never exceeds the defined maximum threshold.
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
---
|
|
1047
|
+
|
|
1048
|
+
## Code Management & Limits
|
|
1049
|
+
|
|
1050
|
+
These settings control how recovery codes are managed, including deletion, export, usage limits, and validation.
|
|
1051
|
+
|
|
1052
|
+
| Variable | Description |
|
|
1053
|
+
| -------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
1054
|
+
| `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS` | Number of days before expired recovery codes are deleted. |
|
|
1055
|
+
| `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` | Number of codes to delete in a single batch operation. |
|
|
1056
|
+
| `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME` | Default filename for exported recovery codes. |
|
|
1057
|
+
| `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT` | Default export format for recovery codes. Options: `'txt'`, `'csv'`, `'pdf'`.|
|
|
1058
|
+
| `DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS` | Maximum allowed login attempts using recovery codes. |
|
|
1059
|
+
| `DJANGO_AUTH_RECOVERY_KEY` | Secret key used for recovery code validation. |
|
|
1060
|
+
| `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN` | Maximum number of expired codes to delete in a single scheduler run. If unset (`-1`), deletion is unlimited. |
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
### Example Usage
|
|
1066
|
+
|
|
1067
|
+
Suppose the settings are:
|
|
1068
|
+
|
|
1069
|
+
- `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS = 90`
|
|
1070
|
+
- `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE = 50`
|
|
1071
|
+
- `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME = "recovery_codes"`
|
|
1072
|
+
- `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT = "txt"`
|
|
1073
|
+
- `DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS = 5`
|
|
1074
|
+
|
|
1075
|
+
Then the system will:
|
|
1076
|
+
|
|
1077
|
+
1. Delete expired recovery codes older than 90 days, in batches of 50.
|
|
1078
|
+
2. Export recovery codes using the default file name `recovery_codes` and format `txt`.
|
|
1079
|
+
3. Limit users to 5 login attempts using recovery codes before locking or enforcing cooldowns.
|
|
1080
|
+
4. Use `DJANGO_AUTH_RECOVERY_KEY` to validate recovery codes during login or verification.
|
|
1081
|
+
|
|
1082
|
+
|
|
1083
|
+
### Cleanup Configuration Examples
|
|
1084
|
+
|
|
1085
|
+
The cleanup behaviour for expired recovery codes can be tuned using:
|
|
1086
|
+
|
|
1087
|
+
- `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` → controls how many codes are deleted per database operation.
|
|
1088
|
+
- `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN` → caps the maximum number of deletions in one scheduler run.
|
|
1089
|
+
|
|
1090
|
+
<br>
|
|
1091
|
+
|
|
1092
|
+
> **Note:** This setting works together with `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE`.
|
|
1093
|
+
> The scheduler will delete codes in batches until either the max deletions per run is reached or all expired codes are removed.
|
|
1094
|
+
> `None` means “delete everything in one run,” while an integer enforces a cap per run.
|
|
1095
|
+
|
|
1096
|
+
### Example setups
|
|
1097
|
+
|
|
1098
|
+
#### Small app / development
|
|
1099
|
+
```env
|
|
1100
|
+
DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE=100
|
|
1101
|
+
DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN=
|
|
1102
|
+
````
|
|
1103
|
+
|
|
1104
|
+
Deletes everything in one run, in small chunks of 100 to avoid heavy queries.
|
|
1105
|
+
|
|
1106
|
+
---
|
|
1107
|
+
|
|
1108
|
+
#### Medium app
|
|
1109
|
+
|
|
1110
|
+
```env
|
|
1111
|
+
DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE=500
|
|
1112
|
+
DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN=5000
|
|
1113
|
+
```
|
|
1114
|
+
|
|
1115
|
+
Deletes up to 5,000 codes per scheduler run, in batches of 500.
|
|
1116
|
+
|
|
1117
|
+
---
|
|
1118
|
+
|
|
1119
|
+
#### Large app (millions of codes)
|
|
1120
|
+
|
|
1121
|
+
```env
|
|
1122
|
+
DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE=1000
|
|
1123
|
+
DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN=10000
|
|
1124
|
+
```
|
|
1125
|
+
|
|
1126
|
+
Deletes up to 10,000 codes per run, in batches of 1,000. This spreads load across multiple scheduler runs while keeping each job predictable and efficient.
|
|
1127
|
+
|
|
1128
|
+
|
|
1129
|
+
|
|
1130
|
+
### Cleanup Process Visualised
|
|
1131
|
+
|
|
1132
|
+
The diagrams below illustrate how expired recovery codes are deleted.
|
|
1133
|
+
|
|
1134
|
+
### 1. Loop until finished
|
|
1135
|
+
All expired codes are deleted in a single scheduler run, in batches.
|
|
1136
|
+
|
|
1137
|
+
```mermaid
|
|
1138
|
+
flowchart TD
|
|
1139
|
+
A[Scheduler Run Starts] --> B{Expired codes exist?}
|
|
1140
|
+
B -->|Yes| C[Delete batch (size=N)]
|
|
1141
|
+
C --> D{Expired codes remain?}
|
|
1142
|
+
D -->|Yes| C
|
|
1143
|
+
D -->|No| E[Scheduler Run Ends]
|
|
1144
|
+
B -->|No| E
|
|
1145
|
+
````
|
|
1146
|
+
|
|
1147
|
+
---
|
|
1148
|
+
|
|
1149
|
+
### 2. Hybrid: capped deletions per run
|
|
1150
|
+
|
|
1151
|
+
Deletes in batches, but stops once the maximum deletions per run is reached.
|
|
1152
|
+
Remaining codes are cleaned in future runs.
|
|
1153
|
+
|
|
1154
|
+
```mermaid
|
|
1155
|
+
flowchart TD
|
|
1156
|
+
A[Scheduler Run Starts] --> B{Expired codes exist?}
|
|
1157
|
+
B -->|Yes| C[Delete batch (size=N)]
|
|
1158
|
+
C --> D[Increase total deleted count]
|
|
1159
|
+
D --> E{Reached max deletions per run?}
|
|
1160
|
+
E -->|Yes| F[Stop, resume next run]
|
|
1161
|
+
E -->|No| G{Expired codes remain?}
|
|
1162
|
+
G -->|Yes| C
|
|
1163
|
+
G -->|No| H[Scheduler Run Ends]
|
|
1164
|
+
B -->|No| H
|
|
1165
|
+
```
|
|
1166
|
+
|
|
1167
|
+
|
|
1168
|
+
### Recommended Settings by Scale
|
|
1169
|
+
|
|
1170
|
+
| Scale | `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` | `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN` | Notes |
|
|
1171
|
+
|--------------|-----------------------------------------------|----------------------------------------------------------|-----------------------------------------------------------------------|
|
|
1172
|
+
| Small (dev / hobby) | 100 | *-1* | Deletes all expired codes in one run, safe for small datasets. |
|
|
1173
|
+
| Medium (tens of thousands) | 500 | 5000 | Balances DB load by capping deletions to 5k per scheduler run. |
|
|
1174
|
+
| Large (millions) | 1000 | 10000 | Spreads cleanup across runs, keeps queries efficient and predictable. |
|
|
1175
|
+
|
|
1176
|
+
**Tip:**
|
|
1177
|
+
|
|
1178
|
+
Always tune based on your database performance and scheduler frequency. For example, if your scheduler runs every 5 minutes, lower values keep load smoother. If it runs nightly, higher values may be better to catch up faster.
|
|
1179
|
+
|
|
1180
|
+
### How Cleanup Works Internally
|
|
1181
|
+
|
|
1182
|
+
When the scheduler runs, the app looks for expired or invalidated recovery codes and removes them according to your configuration.
|
|
1183
|
+
|
|
1184
|
+
The process is:
|
|
1185
|
+
|
|
1186
|
+
1. **Batch deletion**
|
|
1187
|
+
|
|
1188
|
+
- Codes are deleted in small chunks (`DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE`) instead of all at once.
|
|
1189
|
+
- This prevents long-running SQL queries and reduces database locks.
|
|
1190
|
+
|
|
1191
|
+
2. **Optional cap per run**
|
|
1192
|
+
|
|
1193
|
+
- If you set `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN`, the scheduler will stop once that many codes have been deleted.
|
|
1194
|
+
- Any remaining codes will be picked up in the next scheduler run.
|
|
1195
|
+
- This spreads the load across multiple runs and avoids “big bang” deletes.
|
|
1196
|
+
- If the flag is set to None, it becomes unlimited meaning it will carry on looping until all codes are cleared
|
|
1197
|
+
|
|
1198
|
+
3. **Scheduler resumes automatically**
|
|
1199
|
+
|
|
1200
|
+
- On the next scheduled run, the same process repeats until all expired codes are gone.
|
|
1201
|
+
- You don’t need to trigger anything manually.
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
|
|
1205
|
+
✅ This design ensures a couple of things in regards to the cleanup is:
|
|
1206
|
+
|
|
1207
|
+
- **Safe** → avoids stressing the database.
|
|
1208
|
+
- **Scalable** → works for apps with thousands or millions of codes.
|
|
1209
|
+
- **Automatic** → no manual intervention needed.
|
|
1210
|
+
|
|
1211
|
+
|
|
1212
|
+
### FAQ — Frequently Asked Questions
|
|
1213
|
+
|
|
1214
|
+
### Q: What happens if the scheduler crashes during cleanup?
|
|
1215
|
+
|
|
1216
|
+
A: The process is idempotent. If a run is interrupted, any remaining expired codes will be picked up on the next scheduled run.
|
|
1217
|
+
No data loss occurs beyond the intended deletions.
|
|
1218
|
+
|
|
1219
|
+
---
|
|
1220
|
+
|
|
1221
|
+
### Q: Can I disable automatic cleanup?
|
|
1222
|
+
|
|
1223
|
+
A: Yes. Simply avoid scheduling the purge task in your task runner (e.g., Django-Q).
|
|
1224
|
+
You may then run `purge_expired_codes()` manually when required.
|
|
1225
|
+
This is useful for testing or environments with strict operational controls.
|
|
1226
|
+
|
|
1227
|
+
---
|
|
1228
|
+
|
|
1229
|
+
### Q: How do I know how many codes were deleted?
|
|
1230
|
+
|
|
1231
|
+
A: Every purge operation is logged through `RecoveryCodeAudit` or inspect the email sent to admin after a schedule deletion has occurred.
|
|
1232
|
+
You can inspect these logs to see the number of codes deleted, who initiated the deletion, and the associated batch metadata.
|
|
1233
|
+
|
|
1234
|
+
---
|
|
1235
|
+
|
|
1236
|
+
### Q: Will cleanup affect active codes?
|
|
1237
|
+
|
|
1238
|
+
A: No. Only codes that are expired or invalidated (based on retention days and status) are eligible for deletion.
|
|
1239
|
+
Valid codes remain untouched.
|
|
1240
|
+
|
|
1241
|
+
---
|
|
1242
|
+
|
|
1243
|
+
### Q: What if I have millions of expired codes?
|
|
1244
|
+
|
|
1245
|
+
A: Configure both `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` and
|
|
1246
|
+
`DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN` appropriately.
|
|
1247
|
+
This ensures cleanup is spread across multiple runs, preventing excessive locking or transaction bloat.
|
|
1248
|
+
|
|
1249
|
+
---
|
|
1250
|
+
|
|
1251
|
+
### Q: Can I monitor cleanup performance?
|
|
1252
|
+
|
|
1253
|
+
A: Yes, you can monitor through the Django-q admin interface or use `python manage.py qmonitor`.
|
|
1254
|
+
Because deletions are chunked, monitoring helps you fine-tune batch size and per-run caps for optimal efficiency.
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
---
|
|
1258
|
+
|
|
1259
|
+
## Site Settings Flags
|
|
1260
|
+
|
|
1261
|
+
| Variable | Description |
|
|
1262
|
+
| ------------------------------------- | ----------------------------------------------------- |
|
|
1263
|
+
| `DJANGO_AUTH_RECOVERY_CODES_SITE_NAME`| The name of the site to use with the application . |
|
|
1264
|
+
|
|
1265
|
+
### Example Usage
|
|
1266
|
+
|
|
1267
|
+
Suppose the setting is:
|
|
1268
|
+
|
|
1269
|
+
- `DJANGO_AUTH_RECOVERY_CODES_SITE_NAME = "My Awesome Site"`
|
|
1270
|
+
|
|
1271
|
+
Then recovery emails and notifications will display the site name "My Awesome Site" to the user, helping them identify the source of the email and also display on the site dashboard and login page.
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
## Custom Email Message Flags
|
|
1276
|
+
|
|
1277
|
+
| Variable | Description |
|
|
1278
|
+
| ----------------------------------------- | ------------------------------------------------------------------------------------------------- |
|
|
1279
|
+
| `DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG` | The message displayed to the user when recovery codes are successfully sent via email. Admins can customise this message. |
|
|
1280
|
+
|
|
1281
|
+
### Example Usage
|
|
1282
|
+
|
|
1283
|
+
Suppose the setting is:
|
|
1284
|
+
|
|
1285
|
+
- `DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG = "Your recovery codes email has been successfully delivered."`
|
|
1286
|
+
|
|
1287
|
+
Then when a user requests recovery codes, they will see the message:
|
|
1288
|
+
|
|
1289
|
+
> "Your recovery codes email has been successfully delivered."
|
|
1290
|
+
|
|
1291
|
+
Admins can change this message to anything they want, for example:
|
|
1292
|
+
|
|
1293
|
+
```python
|
|
1294
|
+
DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG = "Check your inbox! Your recovery codes are on their way."
|
|
1295
|
+
|
|
1296
|
+
```
|
|
1297
|
+
[⬆ Back to Top](#top)
|
|
1298
|
+
|
|
1299
|
+
---
|
|
1300
|
+
|
|
1301
|
+
## Example Flag Usage
|
|
1302
|
+
|
|
1303
|
+
|
|
1304
|
+
|
|
1305
|
+
```
|
|
1306
|
+
DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL=admin@example.com
|
|
1307
|
+
DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER=smtp@example.com
|
|
1308
|
+
DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME=admin
|
|
1309
|
+
DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP=True
|
|
1310
|
+
DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS=30
|
|
1311
|
+
DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE=20
|
|
1312
|
+
DJANGO_AUTH_RECOVERY_CODE_PER_PAGE=10
|
|
1313
|
+
DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS=90
|
|
1314
|
+
DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT=recovery_dashboard
|
|
1315
|
+
DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE=True
|
|
1316
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL=3600
|
|
1317
|
+
DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN=60
|
|
1318
|
+
DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT=txt
|
|
1319
|
+
DJANGO_AUTH_RECOVERY_KEY=supersecretkey
|
|
1320
|
+
DJANGO_AUTH_RECOVERY_CODES_MAX_DELETIONS_PER_RUN=400
|
|
1321
|
+
```
|
|
1322
|
+
|
|
1323
|
+
---
|
|
1324
|
+
|
|
1325
|
+
## Best Practices for Managing Environment Variables
|
|
1326
|
+
|
|
1327
|
+
1. **Use a `.env` file to keep secret keys and credentials out of source control.
|
|
1328
|
+
|
|
1329
|
+
---
|
|
1330
|
+
|
|
1331
|
+
## Default Values & Required Variables
|
|
1332
|
+
|
|
1333
|
+
| Variable | Required | Default Value | Notes |
|
|
1334
|
+
| ------------------------------------------------------------- | -------- | -------------------- | -------------------------------------------------------------------------------- |
|
|
1335
|
+
| `DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL` | ✅ Yes | – | Email used to send recovery codes. Must be valid. |
|
|
1336
|
+
| `DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER` | ✅ Yes | – | SMTP or host email account. Required for sending emails. |
|
|
1337
|
+
| `DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME` | ✅ Yes | – | Admin username associated with the email. |
|
|
1338
|
+
| `DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP` | ❌ No | `False` | Automatically clean up audit logs if True. |
|
|
1339
|
+
| `DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS` | ❌ No | `30` | Number of days to retain audit logs. |
|
|
1340
|
+
| `DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE` | ❌ No | `20` | Maximum number of expired batches plus the current active batch the user can view under their history section |
|
|
1341
|
+
| `DJANGO_AUTH_RECOVERY_CODE_PER_PAGE` | ❌ No | `10` | Pagination setting for code lists. |
|
|
1342
|
+
| `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS` | ❌ No | `90` | Days before expired codes are deleted. |
|
|
1343
|
+
| `DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER` | ❌ No | `False` | Enable scheduler logging for purge operations. |
|
|
1344
|
+
| `DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT` | ❌ No | `/` | URL to redirect users after code actions. |
|
|
1345
|
+
| `DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG` | ❌ No | `False` | Log sent recovery emails. |
|
|
1346
|
+
| `DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE` | ❌ No | `True` | Use cache for rate limiting. |
|
|
1347
|
+
| `DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN` | ❌ No | `60` | Base cooldown interval in seconds. |
|
|
1348
|
+
| `DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE` | ❌ No | `50` | Number of codes deleted per batch. |
|
|
1349
|
+
| `DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX` | ❌ No | `1000` | Maximum value for cache-based limiter. |
|
|
1350
|
+
| `DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN` | ❌ No | `0` | Minimum value for cache-based limiter. |
|
|
1351
|
+
| `DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL` | ❌ No | `3600` | Cache expiration in seconds. |
|
|
1352
|
+
| `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT` | ❌ No | `3600` | Maximum cooldown threshold in seconds. |
|
|
1353
|
+
| `DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER` | ❌ No | `2` | Multiplier for repeated attempts cooldown. |
|
|
1354
|
+
| `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME` | ❌ No | `recovery_codes` | Default file name for exported codes. |
|
|
1355
|
+
| `DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT` | ❌ No | `txt` | Default format for exporting recovery codes. Options: `'txt'`, `'csv'`, `'pdf'`. |
|
|
1356
|
+
| `DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS` | ❌ No | `5` | Maximum login attempts using recovery codes. |
|
|
1357
|
+
| `DJANGO_AUTH_RECOVERY_KEY` | ✅ Yes | – | Secret key for recovery code validation. Must be kept safe. |
|
|
1358
|
+
| `DJANGO_AUTH_RECOVERY_CODES_PURGE_MAX_DELETIONS_PER_RUN` | ❌ No | `1000` | Caps the maximum number of deletions in one scheduler run. |
|
|
1359
|
+
| `DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG` | ❌ No | `"Your recovery codes email has been successfully delivered."` | Custom message displayed to users after recovery codes are sent. Admins can change this message. |
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
|
|
1363
|
+
---
|
|
1364
|
+
|
|
1365
|
+
## Run checks to verify that flags are valid
|
|
1366
|
+
|
|
1367
|
+
To ensure that all configurations and flags are correct after adding them to the settings.py file, run the following command before starting the application:
|
|
1368
|
+
```
|
|
1369
|
+
|
|
1370
|
+
```python
|
|
1371
|
+
python manage.py check
|
|
1372
|
+
```
|
|
1373
|
+
|
|
1374
|
+
This command will raise an error if any configuration is incorrect.
|
|
1375
|
+
|
|
1376
|
+
If everything is fine, you can then run the server and the task queue:
|
|
1377
|
+
|
|
1378
|
+
```python
|
|
1379
|
+
# Terminal 1
|
|
1380
|
+
python manage.py runserver
|
|
1381
|
+
|
|
1382
|
+
# Terminal 2
|
|
1383
|
+
python manage.py qcluster
|
|
1384
|
+
```
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
## Sending Emails, logging emails to the model, and using Logging for purging codes via Django-q
|
|
1388
|
+
|
|
1389
|
+
Django Auth 2FA Recovery provides the ability to email yourself a copy of your raw recovery codes and can only be done once for a given batch, and only if you haven't logged out after generating the code. This is achieved using a lightweight yet powerful library called **`EmailSender`**, which is responsible for delivering the message.
|
|
1390
|
+
|
|
1391
|
+
In addition to sending, the process can be logged for developers through a companion model named **`EmailSenderLogger`**. Together, these ensure that not only are emails dispatched, but the details of each operation can also be recorded for auditing, debugging, or monitoring purposes. N
|
|
1392
|
+
|
|
1393
|
+
Note for security purpose, the logger doesn't log `context` or the `header` in the logging file because the context contains the `raw plain code` that is passed to the `EmailSender` and therefore `EmailSenderLogger`. Allowing the `context` to be logged would expose a security risk where the anyone with access to the log files could reconstruct the raw codes, and that paired with the email would give them unauthorised access to the person account.
|
|
1394
|
+
|
|
1395
|
+
|
|
1396
|
+
### Using async vs synchronous
|
|
1397
|
+
---
|
|
1398
|
+
|
|
1399
|
+
The application supports both **asynchronous** and **synchronous** email sending for development and production.
|
|
1400
|
+
|
|
1401
|
+
In production, emails are sent **asynchronously** via **Django-Q**, which places the email in a task queue. Depending on the queue load, this may take a few seconds or minutes to process.
|
|
1402
|
+
|
|
1403
|
+
In development, you might want to send emails **synchronously** to see the results immediately and verify that everything is working correctly.
|
|
1404
|
+
|
|
1405
|
+
This behaviour is controlled by the `DEBUG` setting:
|
|
1406
|
+
|
|
1407
|
+
* When `DEBUG = True`, emails are sent **synchronously**.
|
|
1408
|
+
* When `DEBUG = False`, emails are sent **asynchronously** via Django-Q.
|
|
1409
|
+
|
|
1410
|
+
This setup allows developers to test email functionality quickly in development but at the same time keep production efficient and non-blocking.
|
|
1411
|
+
|
|
1412
|
+
|
|
1413
|
+
### Configuration settings
|
|
1414
|
+
---
|
|
1415
|
+
|
|
1416
|
+
Whether emails are logged is determined by a configuration flag in your project’s `settings.py`.
|
|
1417
|
+
|
|
1418
|
+
```python
|
|
1419
|
+
# settings.py
|
|
1420
|
+
|
|
1421
|
+
# Storing user emails in the model
|
|
1422
|
+
DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG = True # store in database
|
|
1423
|
+
DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG = False # Don't store in the database
|
|
1424
|
+
```
|
|
1425
|
+
|
|
1426
|
+
```python
|
|
1427
|
+
|
|
1428
|
+
# using logger while purging code
|
|
1429
|
+
DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER
|
|
1430
|
+
```
|
|
1431
|
+
* **`True`**: The application records details of the email process via `EmailSenderLogger`.
|
|
1432
|
+
* **`False`**: No logging takes place.
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
### Hang on a minute, why can I email myself the code only once, and only if I haven’t logged out after generating it?
|
|
1436
|
+
---
|
|
1437
|
+
|
|
1438
|
+
The way **Django Auth Recovery Code** works is that it never stores the plain text recovery codes in the database. Instead, it stores only their **hash values**.
|
|
1439
|
+
|
|
1440
|
+
A **hash** is a one-way function: it takes an input, applies a hashing algorithm, and produces an output that cannot be reversed to recover the original input. This is different from encryption/decryption, where data can be restored to its original form. Hashing is therefore safer for storing sensitive values such as recovery codes.
|
|
1441
|
+
|
|
1442
|
+
### What does this mean for your codes?
|
|
1443
|
+
---
|
|
1444
|
+
|
|
1445
|
+
Since the generated codes are stored as hashes, the system cannot send you the hash (as it is meaningless to you) and it cannot retrieve the original plain text version (because it was never stored in the database).
|
|
1446
|
+
|
|
1447
|
+
To work around this, the application temporarily stores a copy of the plain text codes in your **backend session** when they are first generated. This session is unique to your login and user account and cannot be accessed by anyone or any other account. Because it is session-based, the codes are removed once you log out.
|
|
1448
|
+
|
|
1449
|
+
### What happens if I refresh the page, can I still email myself the code?
|
|
1450
|
+
---
|
|
1451
|
+
|
|
1452
|
+
Yes. Refreshing the page does not clear the backend session. However, for security reasons, the plain text codes will no longer be displayed in the frontend after the initial page load. As long as you remain logged in, you can still email yourself a copy of the codes.
|
|
1453
|
+
|
|
1454
|
+
### But if I’m still logged in, why can I only email myself a single copy?
|
|
1455
|
+
---
|
|
1456
|
+
|
|
1457
|
+
This is a deliberate **security measure**. Allowing multiple emails of the same batch would unnecessarily increase the risk of exposure. Limiting it to a single email ensures you have one secure copy without duplicating it across your inbox.
|
|
1458
|
+
|
|
1459
|
+
### Can I email myself a copy if I generate a new batch?
|
|
1460
|
+
---
|
|
1461
|
+
|
|
1462
|
+
Yes. Generating a new batch creates a new set of plain text codes, which are again stored in your backend session. You may therefore email yourself one copy of each new batch.
|
|
1463
|
+
|
|
1464
|
+
---
|
|
1465
|
+
|
|
1466
|
+
### Using Logging with the Application
|
|
1467
|
+
---
|
|
1468
|
+
|
|
1469
|
+
`django_auth_recovery_codes` includes a built-in logging configuration, so you do not need to create your own in `settings.py`. This reduces the risk of misconfiguration.
|
|
1470
|
+
|
|
1471
|
+
Because the application uses `django-q` (an asynchronous task manager), the logger is already set up to work with it. Conveniently, everything is preconfigured for you. All you need to do is import the logging configuration and assign it to Django’s `LOGGING` variable.
|
|
1472
|
+
|
|
1473
|
+
```python
|
|
1474
|
+
# settings.py
|
|
1475
|
+
|
|
1476
|
+
from django_auth_recovery_codes.loggers.logger_config import DJANGO_AUTH_RECOVERY_CODES_LOGGING
|
|
1477
|
+
|
|
1478
|
+
LOGGING = DJANGO_AUTH_RECOVERY_CODES_LOGGING
|
|
1479
|
+
```
|
|
1480
|
+
|
|
1481
|
+
The `LOGGING` variable is the standard Django setting for logging. Assigning the provided configuration ensures that log files are correctly created and stored in a dedicated folder.
|
|
1482
|
+
|
|
1483
|
+
---
|
|
1484
|
+
|
|
1485
|
+
### What if I don’t want to override my existing LOGGING configuration?
|
|
1486
|
+
---
|
|
1487
|
+
|
|
1488
|
+
If you already have a logging configuration and prefer not to overwrite it, you can simply **merge** it with `DJANGO_AUTH_RECOVERY_CODES_LOGGING`. Since logging configurations are dictionaries, merging them is straightforward:
|
|
1489
|
+
|
|
1490
|
+
```python
|
|
1491
|
+
# settings.py
|
|
1492
|
+
|
|
1493
|
+
LOGGING = {**LOGGING, **DJANGO_AUTH_RECOVERY_CODES_LOGGING}
|
|
1494
|
+
```
|
|
1495
|
+
|
|
1496
|
+
This approach allows you to keep your existing logging settings intact but still allow you to add support for `django_auth_recovery_codes`.
|
|
1497
|
+
|
|
1498
|
+
[⬆ Back to Top](#top)
|
|
1499
|
+
|
|
1500
|
+
---
|
|
1501
|
+
|
|
1502
|
+
## Downloading Recovery Codes
|
|
1503
|
+
---
|
|
1504
|
+
|
|
1505
|
+
In addition to emailing your recovery codes, `django_auth_recovery_codes` also allows you to **download them directly**. This gives you flexibility in how you choose to back up your codes.
|
|
1506
|
+
|
|
1507
|
+
### How downloads work
|
|
1508
|
+
---
|
|
1509
|
+
|
|
1510
|
+
When recovery codes are generated, a plain text copy is stored temporarily in the `request.session`. This enables you to either:
|
|
1511
|
+
|
|
1512
|
+
- **Email yourself a copy**, or
|
|
1513
|
+
- **Download a copy** in one of the following formats:
|
|
1514
|
+
- Plain text (`.txt`)
|
|
1515
|
+
- PDF (`.pdf`)
|
|
1516
|
+
- CSV (`.csv`)
|
|
1517
|
+
|
|
1518
|
+
|
|
1519
|
+
The format in which the recovery codes are returned (TXT, PDF, or CSV) is determined by a settings flag. By default, the codes are returned as **TXT**, but this can be customised using the following setting:
|
|
1520
|
+
|
|
1521
|
+
```python
|
|
1522
|
+
# Default download format
|
|
1523
|
+
DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT = 'txt' # options: 'txt', 'csv', 'pdf'
|
|
1524
|
+
```
|
|
1525
|
+
|
|
1526
|
+
By default, the downloaded file is named `recovery_codes` (plus the extension) used when using the default format. You can also change the file name using this setting:
|
|
1527
|
+
|
|
1528
|
+
```python
|
|
1529
|
+
# Default download file name
|
|
1530
|
+
DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME = "recovery_codes"
|
|
1531
|
+
|
|
1532
|
+
```
|
|
1533
|
+
|
|
1534
|
+
|
|
1535
|
+
Just like with emailing, once you log out, the session is cleared and the plain text codes are no longer available.
|
|
1536
|
+
|
|
1537
|
+
### Important security notes
|
|
1538
|
+
---
|
|
1539
|
+
|
|
1540
|
+
- You may **only download a copy once** per batch of recovery codes.
|
|
1541
|
+
- The downloaded file contains the **exact same content** as the emailed version (the plain text recovery codes).
|
|
1542
|
+
- If you lose the downloaded file after logging out, you will not be able to retrieve it. You will need to generate a new batch of recovery codes.
|
|
1543
|
+
|
|
1544
|
+
### Example usage
|
|
1545
|
+
|
|
1546
|
+
When generating recovery codes in the application, you will be presented with options to:
|
|
1547
|
+
|
|
1548
|
+
- **Email yourself a copy** (retrieves codes from `request.session`)
|
|
1549
|
+
- **Download a copy** (also retrieves codes from `request.session`)
|
|
1550
|
+
|
|
1551
|
+
Both options use the same temporary storage mechanism, which ensures your plain text recovery codes are only ever available for the current session and cannot be recovered after logout.
|
|
1552
|
+
|
|
1553
|
+
[⬆ Back to Top](#top)
|
|
1554
|
+
|
|
1555
|
+
---
|
|
1556
|
+
|
|
1557
|
+
|
|
1558
|
+
## Quickstart and Walkthrough
|
|
1559
|
+
|
|
1560
|
+
### Setup
|
|
1561
|
+
---
|
|
1562
|
+
|
|
1563
|
+
This guide shows you how to set up a fresh Django project and integrate **2FA Recovery Codes** using the `django_auth_recovery_codes` package.
|
|
1564
|
+
|
|
1565
|
+
The walkthrough assumes you don’t already have a Django project, which is why we create a new one called `test_project`.
|
|
1566
|
+
|
|
1567
|
+
If you already have an existing Django project, skip to Existing project :
|
|
1568
|
+
|
|
1569
|
+
- then follow the steps in this guide that apply to integration (skipping project creation).
|
|
1570
|
+
- In this walkthrough we will not be using Redis, Memecache to create a cache in the settings.py, we do nothing an allow it to defualt the memory cache
|
|
1571
|
+
|
|
1572
|
+
---
|
|
1573
|
+
|
|
1574
|
+
### Installation (with Virtual Environment)
|
|
1575
|
+
|
|
1576
|
+
### 1. Create a virtual environment
|
|
1577
|
+
|
|
1578
|
+
```bash
|
|
1579
|
+
python -m venv env
|
|
1580
|
+
````
|
|
1581
|
+
|
|
1582
|
+
* `env` is the folder name for your virtual environment. You can name it anything.
|
|
1583
|
+
|
|
1584
|
+
### 2. Activate the virtual environment
|
|
1585
|
+
|
|
1586
|
+
* **Windows (PowerShell)**
|
|
1587
|
+
|
|
1588
|
+
```powershell
|
|
1589
|
+
.\env\Scripts\Activate.ps1
|
|
1590
|
+
```
|
|
1591
|
+
* **Windows (CMD)**
|
|
1592
|
+
|
|
1593
|
+
```cmd
|
|
1594
|
+
.\env\Scripts\activate.bat
|
|
1595
|
+
```
|
|
1596
|
+
* **macOS/Linux**
|
|
1597
|
+
|
|
1598
|
+
```bash
|
|
1599
|
+
source env/bin/activate
|
|
1600
|
+
```
|
|
1601
|
+
|
|
1602
|
+
### 3. Upgrade pip (optional but recommended)
|
|
1603
|
+
|
|
1604
|
+
```bash
|
|
1605
|
+
pip install --upgrade pip
|
|
1606
|
+
```
|
|
1607
|
+
|
|
1608
|
+
### 4. Install Django (latest version)
|
|
1609
|
+
|
|
1610
|
+
```bash
|
|
1611
|
+
pip install django
|
|
1612
|
+
```
|
|
1613
|
+
|
|
1614
|
+
### 5. Install the recovery codes package
|
|
1615
|
+
|
|
1616
|
+
```bash
|
|
1617
|
+
pip install django_auth_recovery_codes
|
|
1618
|
+
```
|
|
1619
|
+
|
|
1620
|
+
### 6. Verify installation
|
|
1621
|
+
|
|
1622
|
+
```bash
|
|
1623
|
+
python -m django --version
|
|
1624
|
+
pip show django_auth_recovery_codes
|
|
1625
|
+
```
|
|
1626
|
+
|
|
1627
|
+
---
|
|
1628
|
+
|
|
1629
|
+
## Project Setup
|
|
1630
|
+
|
|
1631
|
+
### 7. Create a new Django project
|
|
1632
|
+
|
|
1633
|
+
```bash
|
|
1634
|
+
django-admin startproject test_project
|
|
1635
|
+
cd test_project
|
|
1636
|
+
```
|
|
1637
|
+
|
|
1638
|
+
### 8. Run initial migrations
|
|
1639
|
+
|
|
1640
|
+
```bash
|
|
1641
|
+
python manage.py migrate
|
|
1642
|
+
```
|
|
1643
|
+
|
|
1644
|
+
### 9. Create a Django superuser
|
|
1645
|
+
|
|
1646
|
+
```bash
|
|
1647
|
+
python manage.py createsuperuser
|
|
1648
|
+
```
|
|
1649
|
+
|
|
1650
|
+
* Follow the prompts to set username, email, and password.
|
|
1651
|
+
|
|
1652
|
+
### 10. Start a new app called `home`
|
|
1653
|
+
|
|
1654
|
+
```bash
|
|
1655
|
+
python manage.py startapp home
|
|
1656
|
+
```
|
|
1657
|
+
|
|
1658
|
+
### 11. Add `home`, `django_auth_recovery_codes`, and `django_q` to `INSTALLED_APPS`
|
|
1659
|
+
|
|
1660
|
+
Edit `test_project/settings.py`:
|
|
1661
|
+
|
|
1662
|
+
```python
|
|
1663
|
+
INSTALLED_APPS = [
|
|
1664
|
+
...,
|
|
1665
|
+
|
|
1666
|
+
# third-party apps
|
|
1667
|
+
"django_auth_recovery_codes",
|
|
1668
|
+
"django_q",
|
|
1669
|
+
|
|
1670
|
+
# your app
|
|
1671
|
+
"home",
|
|
1672
|
+
]
|
|
1673
|
+
```
|
|
1674
|
+
|
|
1675
|
+
|
|
1676
|
+
### 12. Run the development server
|
|
1677
|
+
|
|
1678
|
+
```bash
|
|
1679
|
+
python manage.py runserver
|
|
1680
|
+
```
|
|
1681
|
+
|
|
1682
|
+
Open [http://127.0.0.1:8000/admin](http://127.0.0.1:8000/admin) and log in with your superuser credentials.
|
|
1683
|
+
|
|
1684
|
+
---
|
|
1685
|
+
|
|
1686
|
+
## Configure URLs
|
|
1687
|
+
|
|
1688
|
+
### 13. In `home/urls.py`
|
|
1689
|
+
|
|
1690
|
+
Create the file if it doesn’t exist:
|
|
1691
|
+
|
|
1692
|
+
```python
|
|
1693
|
+
from django.urls import path
|
|
1694
|
+
from . import views
|
|
1695
|
+
|
|
1696
|
+
urlpatterns = [
|
|
1697
|
+
path("", view=views.home, name="home"),
|
|
1698
|
+
]
|
|
1699
|
+
```
|
|
1700
|
+
|
|
1701
|
+
### 14. In your **main** `urls.py` (same folder as `settings.py`)
|
|
1702
|
+
|
|
1703
|
+
```python
|
|
1704
|
+
from django.contrib import admin
|
|
1705
|
+
from django.urls import path, include
|
|
1706
|
+
|
|
1707
|
+
urlpatterns = [
|
|
1708
|
+
path("admin/", admin.site.urls),
|
|
1709
|
+
path("", include("django_auth_recovery_codes.urls")), # recovery codes
|
|
1710
|
+
path("", include("home.urls")), # home app
|
|
1711
|
+
]
|
|
1712
|
+
```
|
|
1713
|
+
|
|
1714
|
+
---
|
|
1715
|
+
|
|
1716
|
+
### Configure your Settings.py file
|
|
1717
|
+
|
|
1718
|
+
### 15. Add the recovery code settings flags in your `settings.py` file
|
|
1719
|
+
|
|
1720
|
+
```python
|
|
1721
|
+
|
|
1722
|
+
|
|
1723
|
+
# setting up the flags
|
|
1724
|
+
# ===========================
|
|
1725
|
+
# 📧 Email / Admin
|
|
1726
|
+
# ===========================
|
|
1727
|
+
DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL = "your-email-address-here"
|
|
1728
|
+
DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER = "your-host-email-address-here"
|
|
1729
|
+
DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME = "username here"
|
|
1730
|
+
DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG = False
|
|
1731
|
+
|
|
1732
|
+
# ===========================
|
|
1733
|
+
# 🔑 Security / Keys
|
|
1734
|
+
# ===========================
|
|
1735
|
+
DJANGO_AUTH_RECOVERY_KEY = "add-recovery-key-here"
|
|
1736
|
+
|
|
1737
|
+
# ===========================
|
|
1738
|
+
# 📜 Audit / Retention
|
|
1739
|
+
# ===========================
|
|
1740
|
+
DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP = True
|
|
1741
|
+
DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS = 30
|
|
1742
|
+
DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS = 30
|
|
1743
|
+
DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER = True
|
|
1744
|
+
|
|
1745
|
+
# ===========================
|
|
1746
|
+
# ⏳ Rate Limiting / Cooldowns
|
|
1747
|
+
# ===========================
|
|
1748
|
+
DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE = True
|
|
1749
|
+
DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN = 100 # five minutes minutes lock down
|
|
1750
|
+
DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT = 3600
|
|
1751
|
+
DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER = 2
|
|
1752
|
+
DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS = 5
|
|
1753
|
+
|
|
1754
|
+
# ===========================
|
|
1755
|
+
# 📦 Caching
|
|
1756
|
+
# ===========================
|
|
1757
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX = 3600
|
|
1758
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN = 1
|
|
1759
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL = 3600
|
|
1760
|
+
|
|
1761
|
+
# ===========================
|
|
1762
|
+
# 📊 Pagination / Limits
|
|
1763
|
+
# ===========================
|
|
1764
|
+
DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE = 20
|
|
1765
|
+
DJANGO_AUTH_RECOVERY_CODE_PER_PAGE = 5
|
|
1766
|
+
DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE = 400
|
|
1767
|
+
DJANGO_AUTH_RECOVERY_CODES_MAX_DELETIONS_PER_RUN = -1
|
|
1768
|
+
|
|
1769
|
+
# ===========================
|
|
1770
|
+
# 📂 Files / Naming
|
|
1771
|
+
# ===========================
|
|
1772
|
+
DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME = "recovery_codes"
|
|
1773
|
+
DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT = "txt"
|
|
1774
|
+
|
|
1775
|
+
# ===========================
|
|
1776
|
+
# 🌍 Site / Redirects
|
|
1777
|
+
# ===========================
|
|
1778
|
+
DJANGO_AUTH_RECOVERY_CODES_SITE_NAME = "This is a demo tutorial"
|
|
1779
|
+
DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT = "logout_user"
|
|
1780
|
+
|
|
1781
|
+
|
|
1782
|
+
|
|
1783
|
+
# ===========================
|
|
1784
|
+
# 🌍 REcovery code email sucess message
|
|
1785
|
+
# ===========================
|
|
1786
|
+
DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG = "Your recovery codes email has been successfully delivered."
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
# add the email backend testing
|
|
1790
|
+
EMAIL_BACKEND = "django.core.mail.backends.filebased.EmailBackend"
|
|
1791
|
+
EMAIL_FILE_PATH = BASE_DIR / "sent_emails"
|
|
1792
|
+
Path(EMAIL_FILE_PATH).mkdir(parents=True, exist_ok=True)
|
|
1793
|
+
|
|
1794
|
+
|
|
1795
|
+
# Add the Q_CLUSTER for django-1
|
|
1796
|
+
|
|
1797
|
+
Q_CLUSTER = {
|
|
1798
|
+
'name': 'recovery_codes',
|
|
1799
|
+
'workers': 2,
|
|
1800
|
+
'timeout': 300, # 5 minutes max per task
|
|
1801
|
+
'retry': 600, # retry after 10 minutes if task fails (retry must be greater than timeout)
|
|
1802
|
+
'recycle': 500,
|
|
1803
|
+
'compress': True,
|
|
1804
|
+
'cpu_affinity': 1,
|
|
1805
|
+
'save_limit': 250,
|
|
1806
|
+
'queue_limit': 500,
|
|
1807
|
+
'orm': 'default',
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
|
|
1811
|
+
# we need to tell EmailSender where to find the templates dir
|
|
1812
|
+
|
|
1813
|
+
import django_auth_recovery_codes
|
|
1814
|
+
from pathlib import Path
|
|
1815
|
+
|
|
1816
|
+
# Get the path to the installed package
|
|
1817
|
+
PACKAGE_DIR = Path(django_auth_recovery_codes.__file__).parent
|
|
1818
|
+
|
|
1819
|
+
# Define the templates directory within the package
|
|
1820
|
+
MYAPP_TEMPLATES_DIR = PACKAGE_DIR / "templates" / "django_auth_recovery_codes"
|
|
1821
|
+
|
|
1822
|
+
|
|
1823
|
+
# we need to add in the logging
|
|
1824
|
+
|
|
1825
|
+
from django_auth_recovery_codes.loggers.logger_config import DJANGO_AUTH_RECOVERY_CODES_LOGGING
|
|
1826
|
+
|
|
1827
|
+
|
|
1828
|
+
LOGGING = DJANGO_AUTH_RECOVERY_CODES_LOGGING
|
|
1829
|
+
```
|
|
1830
|
+
|
|
1831
|
+
### Add a Q_CLUSTER
|
|
1832
|
+
See 
|
|
1833
|
+
|
|
1834
|
+
For now we use the default
|
|
1835
|
+
|
|
1836
|
+
```
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
Q_CLUSTER = {
|
|
1840
|
+
'name': 'recovery_codes',
|
|
1841
|
+
'workers': 2,
|
|
1842
|
+
'timeout': 300, # 5 minutes max per task
|
|
1843
|
+
'retry': 600, # retry after 10 minutes if task fails (retry must be greater than timeout)
|
|
1844
|
+
'recycle': 500,
|
|
1845
|
+
'compress': True,
|
|
1846
|
+
'cpu_affinity': 1,
|
|
1847
|
+
'save_limit': 250,
|
|
1848
|
+
'queue_limit': 500,
|
|
1849
|
+
'orm': 'default',
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
```
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
|
+
### 16.Set up the file-based email backend (for testing)
|
|
1856
|
+
|
|
1857
|
+
This will create a `sent_emails` folder where Django saves emails instead of sending them.
|
|
1858
|
+
|
|
1859
|
+
```python
|
|
1860
|
+
EMAIL_BACKEND = "django.core.mail.backends.filebased.EmailBackend"
|
|
1861
|
+
EMAIL_FILE_PATH = BASE_DIR / "sent_emails"
|
|
1862
|
+
```
|
|
1863
|
+
|
|
1864
|
+
### 17. Run the system checks
|
|
1865
|
+
|
|
1866
|
+
Stop the server (`Ctrl+C`) if it’s running, then run:
|
|
1867
|
+
|
|
1868
|
+
```bash
|
|
1869
|
+
python manage.py check
|
|
1870
|
+
```
|
|
1871
|
+
|
|
1872
|
+
This will raise errors if any settings are misconfigured (e.g., wrong data types).
|
|
1873
|
+
|
|
1874
|
+
---
|
|
1875
|
+
|
|
1876
|
+
### 17a. Generate a recovery code
|
|
1877
|
+
|
|
1878
|
+
Run the follwoing command, make sure your virtual environment is active.
|
|
1879
|
+
This will drop you into shell but load all app modules
|
|
1880
|
+
|
|
1881
|
+
```python
|
|
1882
|
+
|
|
1883
|
+
python manage.py shell
|
|
1884
|
+
|
|
1885
|
+
```
|
|
1886
|
+
Next run
|
|
1887
|
+
|
|
1888
|
+
```python
|
|
1889
|
+
|
|
1890
|
+
from django_auth_recovery_codes.utils.security.generator import generate_secure_token
|
|
1891
|
+
|
|
1892
|
+
# This will generate a secure cryptographically key which can use for your recovery key in the settings flag
|
|
1893
|
+
# code_length = 10, default this will generate a secret key that is 100 characters, adjust length as you see fit
|
|
1894
|
+
generate_secure_token(code_length=10)
|
|
1895
|
+
|
|
1896
|
+
```
|
|
1897
|
+
|
|
1898
|
+
Copy the key into your recovery key
|
|
1899
|
+
|
|
1900
|
+
```
|
|
1901
|
+
DJANGO_AUTH_RECOVERY_KEY =
|
|
1902
|
+
|
|
1903
|
+
```
|
|
1904
|
+
|
|
1905
|
+
|
|
1906
|
+
|
|
1907
|
+
### Run Services
|
|
1908
|
+
|
|
1909
|
+
### 18. Open two terminals
|
|
1910
|
+
|
|
1911
|
+
**Terminal 1** – run the server:
|
|
1912
|
+
|
|
1913
|
+
```bash
|
|
1914
|
+
python manage.py runserver
|
|
1915
|
+
```
|
|
1916
|
+
|
|
1917
|
+
**Terminal 2** – run django-q cluster:
|
|
1918
|
+
|
|
1919
|
+
```bash
|
|
1920
|
+
python manage.py qcluster
|
|
1921
|
+
```
|
|
1922
|
+
|
|
1923
|
+
---
|
|
1924
|
+
### Create a Home View
|
|
1925
|
+
|
|
1926
|
+
#### 19. In `home/views.py`
|
|
1927
|
+
|
|
1928
|
+
```python
|
|
1929
|
+
from django.http import HttpResponse
|
|
1930
|
+
|
|
1931
|
+
def home(request):
|
|
1932
|
+
return HttpResponse("This is the home page")
|
|
1933
|
+
```
|
|
1934
|
+
|
|
1935
|
+
---
|
|
1936
|
+
|
|
1937
|
+
### Verify the Home Page
|
|
1938
|
+
|
|
1939
|
+
Open your browser and go to:
|
|
1940
|
+
|
|
1941
|
+
```
|
|
1942
|
+
http://127.0.0.1:8000/
|
|
1943
|
+
```
|
|
1944
|
+
|
|
1945
|
+
You should see:
|
|
1946
|
+
*"This is the home page"*
|
|
1947
|
+
|
|
1948
|
+
---
|
|
1949
|
+
|
|
1950
|
+
markdown
|
|
1951
|
+
### Access the Admin
|
|
1952
|
+
|
|
1953
|
+
Since we don’t have a login portal yet, log in via the admin:
|
|
1954
|
+
|
|
1955
|
+
```
|
|
1956
|
+
|
|
1957
|
+
http://127.0.0.1:8000/admin/
|
|
1958
|
+
|
|
1959
|
+
```
|
|
1960
|
+
|
|
1961
|
+
* Enter the superuser credentials you created with `createsuperuser`.
|
|
1962
|
+
|
|
1963
|
+
---
|
|
1964
|
+
|
|
1965
|
+
### Access the Recovery Codes page dashboard
|
|
1966
|
+
|
|
1967
|
+
Once logged in, go to the dashboard via:
|
|
1968
|
+
|
|
1969
|
+
```
|
|
1970
|
+
|
|
1971
|
+
http://127.0.0.1:8000/auth/recovery-codes/dashboard/
|
|
1972
|
+
|
|
1973
|
+
```
|
|
1974
|
+
|
|
1975
|
+
---
|
|
1976
|
+
|
|
1977
|
+
### Code Generation
|
|
1978
|
+
|
|
1979
|
+
##### Choose whether the code should have an expiry date
|
|
1980
|
+
|
|
1981
|
+
<div align="center">
|
|
1982
|
+
<img src="django_auth_recovery_codes/docs/images/generate_code_form.png" alt="Generate code form" width="1000">
|
|
1983
|
+
</div>
|
|
1984
|
+
|
|
1985
|
+
---
|
|
1986
|
+
|
|
1987
|
+
### Once the code is generated
|
|
1988
|
+
|
|
1989
|
+
* You should see something that looks like this:
|
|
1990
|
+
|
|
1991
|
+
<div align="center">
|
|
1992
|
+
<img src="django_auth_recovery_codes/docs/images/plaintext_generated_code.png" alt="Plaintext generated code" width="1000">
|
|
1993
|
+
</div>
|
|
1994
|
+
|
|
1995
|
+
* From here, you can regenerate, email, download, or delete the code.
|
|
1996
|
+
|
|
1997
|
+
---
|
|
1998
|
+
|
|
1999
|
+
|
|
2000
|
+
### Verifying Generated Codes
|
|
2001
|
+
|
|
2002
|
+
* Once the codes are generated, you have the option to verify if the setup is correct.
|
|
2003
|
+
* This is a one-time verification test, and the form will remain until it is verified.
|
|
2004
|
+
* Once verified, it will no longer appear, even on a new batch generation.
|
|
2005
|
+
* To use, simply select a code and enter it in the form.
|
|
2006
|
+
|
|
2007
|
+
<div align="center">
|
|
2008
|
+
<img src="django_auth_recovery_codes/docs/images/verify_code.png" alt="Verify code form" width="1000">
|
|
2009
|
+
</div>
|
|
2010
|
+
|
|
2011
|
+
#### Failed Test
|
|
2012
|
+
|
|
2013
|
+
* A failed test will look like this:
|
|
2014
|
+
|
|
2015
|
+
<div align="center">
|
|
2016
|
+
<img src="django_auth_recovery_codes/docs/images/failed_test.png" alt="Failed code verification" width="1000">
|
|
2017
|
+
</div>
|
|
2018
|
+
|
|
2019
|
+
#### Successful Test
|
|
2020
|
+
|
|
2021
|
+
* A successful test will look like this.
|
|
2022
|
+
* Once the test is successful, the form will no longer be visible.
|
|
2023
|
+
|
|
2024
|
+
<div align="center">
|
|
2025
|
+
<img src="django_auth_recovery_codes/docs/images/successful_test.png" alt="Successful code verification" width="1000">
|
|
2026
|
+
</div>
|
|
2027
|
+
|
|
2028
|
+
---
|
|
2029
|
+
|
|
2030
|
+
### Downloaded and Emailed Code
|
|
2031
|
+
|
|
2032
|
+
* Once a code is downloaded or emailed, it cannot be used again for the same batch.
|
|
2033
|
+
|
|
2034
|
+
<div align="center">
|
|
2035
|
+
<img src="django_auth_recovery_codes/docs/images/email_and_downloaded_code.png" alt="Downloaded or emailed code" width="1000">
|
|
2036
|
+
</div>
|
|
2037
|
+
|
|
2038
|
+
---
|
|
2039
|
+
|
|
2040
|
+
### Invalidating or Deleting a Code
|
|
2041
|
+
|
|
2042
|
+
* The application allows you to invalidate or delete a code.
|
|
2043
|
+
* Once a code has been invalidated or deleted, it cannot be used again.
|
|
2044
|
+
|
|
2045
|
+
<div align="center">
|
|
2046
|
+
<img src="django_auth_recovery_codes/docs/images/invalidate_or_delete_code.png" alt="Invalidate or delete code" width="1000">
|
|
2047
|
+
</div>
|
|
2048
|
+
|
|
2049
|
+
---
|
|
2050
|
+
|
|
2051
|
+
### Viewing the Code Batch History
|
|
2052
|
+
|
|
2053
|
+
* You can view your code history.
|
|
2054
|
+
* It contains information about the generated code batch, such as the number issued and whether the codes were downloaded or emailed.
|
|
2055
|
+
|
|
2056
|
+
<div align="center">
|
|
2057
|
+
<img src="django_auth_recovery_codes/docs/images/code_batch_history.png" alt="Code batch history" width="1000">
|
|
2058
|
+
</div>
|
|
2059
|
+
|
|
2060
|
+
---
|
|
2061
|
+
|
|
2062
|
+
|
|
2063
|
+
### Logout of the application
|
|
2064
|
+
|
|
2065
|
+
Now click the `logout` but before you do make sure to download a copy of the recovery codes, you will need this to login.
|
|
2066
|
+
Once you logout you be redirect to the default login page, see the flag settings to see how to redirect to another page .
|
|
2067
|
+
|
|
2068
|
+
* You will no longer be able to access the dashboard since it is login only
|
|
2069
|
+
* You can verify this by going to the home page
|
|
2070
|
+
|
|
2071
|
+
```
|
|
2072
|
+
http://127.0.0.1:8000
|
|
2073
|
+
|
|
2074
|
+
```
|
|
2075
|
+
|
|
2076
|
+
---
|
|
2077
|
+
|
|
2078
|
+
### Failed Attempts and Rate Limiting
|
|
2079
|
+
|
|
2080
|
+
**Login Form**
|
|
2081
|
+
|
|
2082
|
+
<div align="center">
|
|
2083
|
+
<img src="django_auth_recovery_codes/docs/images/login.png" alt="2FA login form" width="1000">
|
|
2084
|
+
</div>
|
|
2085
|
+
|
|
2086
|
+
**Failed Attempt Example**
|
|
2087
|
+
|
|
2088
|
+
* Failed login attempts are limited by the flag `DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS`.
|
|
2089
|
+
* In this example, it has been set to `5`.
|
|
2090
|
+
* This means that after 5 failed attempts, the rate limiter activates.
|
|
2091
|
+
* The cooldown starts at 1 minute and increases with each subsequent failed attempt.
|
|
2092
|
+
* It will not exceed the cooldown threshold period (e.g., if set to `3600`, that is 1 hour).
|
|
2093
|
+
|
|
2094
|
+
|
|
2095
|
+
<div align="center">
|
|
2096
|
+
<img src="django_auth_recovery_codes/docs/images/incorrect_login_attempts.png" alt="Incorrect login attempt" width="1000">
|
|
2097
|
+
</div>
|
|
2098
|
+
|
|
2099
|
+
---
|
|
2100
|
+
|
|
2101
|
+
### Successful Login
|
|
2102
|
+
|
|
2103
|
+
* Enter the email address you used when creating your superuser.
|
|
2104
|
+
* Use one of the valid 2FA recovery codes from your downloaded codes.
|
|
2105
|
+
* Upon success, you will be redirected to the dashboard.
|
|
2106
|
+
* The code you used will automatically be marked as invalid.
|
|
2107
|
+
|
|
2108
|
+
|
|
2109
|
+
---
|
|
2110
|
+
|
|
2111
|
+
|
|
2112
|
+
### 2. Existing Project Setup
|
|
2113
|
+
|
|
2114
|
+
If you already have a Django project running, integration is simple:
|
|
2115
|
+
|
|
2116
|
+
1. **Install the package**
|
|
2117
|
+
|
|
2118
|
+
```bash
|
|
2119
|
+
pip install django_auth_recovery_codes
|
|
2120
|
+
```
|
|
2121
|
+
|
|
2122
|
+
2. **Update `INSTALLED_APPS` in `settings.py`**
|
|
2123
|
+
|
|
2124
|
+
```python
|
|
2125
|
+
INSTALLED_APPS = [
|
|
2126
|
+
...,
|
|
2127
|
+
"django_auth_recovery_codes",
|
|
2128
|
+
"django_q", # required for background jobs
|
|
2129
|
+
]
|
|
2130
|
+
```
|
|
2131
|
+
|
|
2132
|
+
3. **Add a recovery key and email backend (for testing)**
|
|
2133
|
+
|
|
2134
|
+
```python
|
|
2135
|
+
EMAIL_BACKEND = "django.core.mail.backends.filebased.EmailBackend"
|
|
2136
|
+
EMAIL_FILE_PATH = BASE_DIR / "sent_emails"
|
|
2137
|
+
|
|
2138
|
+
DJANGO_AUTH_RECOVERY_KEY = "add-some-key"
|
|
2139
|
+
```
|
|
2140
|
+
|
|
2141
|
+
4. **Include URLs in your main `urls.py`**
|
|
2142
|
+
|
|
2143
|
+
```python
|
|
2144
|
+
from django.urls import path, include
|
|
2145
|
+
|
|
2146
|
+
urlpatterns = [
|
|
2147
|
+
...,
|
|
2148
|
+
path("", include("django_auth_recovery_codes.urls")),
|
|
2149
|
+
]
|
|
2150
|
+
```
|
|
2151
|
+
|
|
2152
|
+
5. **Run migrations**
|
|
2153
|
+
|
|
2154
|
+
```bash
|
|
2155
|
+
python manage.py migrate
|
|
2156
|
+
```
|
|
2157
|
+
|
|
2158
|
+
> ⚠️ You don’t need to run `makemigrations` for this package because it already ships with its own migrations.
|
|
2159
|
+
> Just running `migrate` will apply them.
|
|
2160
|
+
|
|
2161
|
+
6. **Start services**
|
|
2162
|
+
|
|
2163
|
+
```bash
|
|
2164
|
+
# Terminal 1
|
|
2165
|
+
python manage.py runserver
|
|
2166
|
+
|
|
2167
|
+
# Terminal 2
|
|
2168
|
+
python manage.py qcluster
|
|
2169
|
+
```
|
|
2170
|
+
|
|
2171
|
+
---
|
|
2172
|
+
## Scheduling a Code Removal Using Django-Q
|
|
2173
|
+
|
|
2174
|
+
In this section, we walk you through how to safely remove recovery codes using Django-Q. You will learn how to generate codes and schedule their deletion, ensuring they are managed automatically and securely. Make sure this running in a separate window
|
|
2175
|
+
|
|
2176
|
+
```
|
|
2177
|
+
python manage.py qcluster
|
|
2178
|
+
|
|
2179
|
+
```
|
|
2180
|
+
|
|
2181
|
+
### Generate and Delete Codes
|
|
2182
|
+
|
|
2183
|
+
1. Generate your recovery codes.
|
|
2184
|
+
2. Click the **Delete Codes** button and confirm the action.
|
|
2185
|
+
|
|
2186
|
+
> Once confirmed, Django-Q will schedule the codes for deletion. This means the codes will be automatically removed according to the scheduled task, rather than immediately, providing a safe and managed cleanup process.
|
|
2187
|
+
|
|
2188
|
+
<div align="center">
|
|
2189
|
+
<img src="django_auth_recovery_codes/docs/images/delete_codes.png" alt="Delete codes form" width="1000">
|
|
2190
|
+
</div>
|
|
2191
|
+
|
|
2192
|
+
---
|
|
2193
|
+
|
|
2194
|
+
### Managing Scheduled Deletion via the Admin
|
|
2195
|
+
|
|
2196
|
+
Since we are logged in through the admin, we already have administrator access.
|
|
2197
|
+
|
|
2198
|
+
1. Open a new tab and navigate to:
|
|
2199
|
+
|
|
2200
|
+
```
|
|
2201
|
+
http://127.0.0.1:8000/admin/
|
|
2202
|
+
```
|
|
2203
|
+
|
|
2204
|
+
2. Once there, click on the **Recovery codes** link.
|
|
2205
|
+
|
|
2206
|
+
<div align="center">
|
|
2207
|
+
<img src="django_auth_recovery_codes/docs/images/admin.png" alt="Admin" width="1000">
|
|
2208
|
+
</div>
|
|
2209
|
+
|
|
2210
|
+
You will then see the following view:
|
|
2211
|
+
|
|
2212
|
+
<div align="center">
|
|
2213
|
+
<img src="django_auth_recovery_codes/docs/images/admin-delete-codes.png" alt="Admin delete codes" width="1000">
|
|
2214
|
+
</div>
|
|
2215
|
+
|
|
2216
|
+
Select **Recovery code cleanup schedulers**:
|
|
2217
|
+
|
|
2218
|
+
<div align="center">
|
|
2219
|
+
<img src="django_auth_recovery_codes/docs/images/admin-schedule-link.png" alt="Admin schedule link" width="300">
|
|
2220
|
+
</div>
|
|
2221
|
+
|
|
2222
|
+
---
|
|
2223
|
+
|
|
2224
|
+
### Scheduling a Delete
|
|
2225
|
+
|
|
2226
|
+
<div align="center">
|
|
2227
|
+
<img src="django_auth_recovery_codes/docs/images/admin-schedule-delete.png" alt="Admin schedule delete" width="700">
|
|
2228
|
+
</div>
|
|
2229
|
+
|
|
2230
|
+
#### Quick Explanation
|
|
2231
|
+
|
|
2232
|
+
* **Retention days**: The number of days an expired or invalid code remains in the database before being deleted. For example, if set to 30, a code will be deleted 30 days after it expires. The default is controlled via a settings flag but can be overridden in the admin interface.
|
|
2233
|
+
|
|
2234
|
+
* For testing, set this to `0` to remove codes immediately.
|
|
2235
|
+
|
|
2236
|
+
* **Run at**: The time the scheduler should run.
|
|
2237
|
+
|
|
2238
|
+
* **Schedule type**: How frequently the scheduler should run (`Once`, `Hourly`, `Daily`, `Weekly`, `Monthly`, `Quarterly`, `Yearly`).
|
|
2239
|
+
|
|
2240
|
+
* **Use with logger**: Records the scheduled deletion in a log file.
|
|
2241
|
+
|
|
2242
|
+
* **Delete empty batch**: When set to `True`, the parent batch (model) is removed if no active codes remain. When `False`, the batch will be kept.
|
|
2243
|
+
|
|
2244
|
+
* **Name**: A descriptive name for the scheduler.
|
|
2245
|
+
|
|
2246
|
+
* **Next run**: The next time the scheduler should run. This must not be earlier than the **Run at** value. It can also be left blank.
|
|
2247
|
+
|
|
2248
|
+
* Note: The scheduler is idempotent. Once configured, it will follow the set rules without needing to be triggered manually. The **Next run** option simply allows you to run an additional execution if required.
|
|
2249
|
+
|
|
2250
|
+
|
|
2251
|
+
Save the scheduler
|
|
2252
|
+
|
|
2253
|
+
|
|
2254
|
+
### View tasks
|
|
2255
|
+
|
|
2256
|
+
Once Django-q is running you can view failed, queued, tasks via this section
|
|
2257
|
+
|
|
2258
|
+
<div align="center">
|
|
2259
|
+
<img src="django_auth_recovery_codes/docs/images/view_tasks.png" alt="view taske" width="300">
|
|
2260
|
+
</div>
|
|
2261
|
+
|
|
2262
|
+
|
|
2263
|
+
### Summary
|
|
2264
|
+
|
|
2265
|
+
## Scheduling a Code Removal Using Django-Q
|
|
2266
|
+
|
|
2267
|
+
In this section, we walk you through how to safely remove recovery codes using Django-Q. You will learn how to generate codes and schedule their deletion, ensuring they are managed automatically and securely.
|
|
2268
|
+
|
|
2269
|
+
---
|
|
2270
|
+
|
|
2271
|
+
### Generate and Delete Codes
|
|
2272
|
+
|
|
2273
|
+
1. Generate your recovery codes.
|
|
2274
|
+
2. Click the **Delete Codes** button and confirm the action.
|
|
2275
|
+
|
|
2276
|
+
> Once confirmed, Django-Q will schedule the codes for deletion. This means the codes will be automatically removed according to the scheduled task, rather than immediately, providing a safe and managed cleanup process.
|
|
2277
|
+
|
|
2278
|
+
<div align="center">
|
|
2279
|
+
<img src="django_auth_recovery_codes/docs/images/delete_codes.png" alt="Delete codes form" width="1000">
|
|
2280
|
+
</div>
|
|
2281
|
+
|
|
2282
|
+
---
|
|
2283
|
+
|
|
2284
|
+
### Managing Scheduled Deletion via the Admin
|
|
2285
|
+
|
|
2286
|
+
Since we are logged in through the admin, we already have administrator access.
|
|
2287
|
+
|
|
2288
|
+
1. Open a new tab and navigate to:
|
|
2289
|
+
|
|
2290
|
+
```
|
|
2291
|
+
|
|
2292
|
+
[http://127.0.0.1:8000/admin/](http://127.0.0.1:8000/admin/)
|
|
2293
|
+
|
|
2294
|
+
```
|
|
2295
|
+
|
|
2296
|
+
2. Once there, click on the **Recovery codes** link.
|
|
2297
|
+
|
|
2298
|
+
<div align="center">
|
|
2299
|
+
<img src="django_auth_recovery_codes/docs/images/admin.png" alt="Admin" width="1000">
|
|
2300
|
+
</div>
|
|
2301
|
+
|
|
2302
|
+
You will then see the following view:
|
|
2303
|
+
|
|
2304
|
+
<div align="center">
|
|
2305
|
+
<img src="django_auth_recovery_codes/docs/images/admin-delete-codes.png" alt="Admin delete codes" width="1000">
|
|
2306
|
+
</div>
|
|
2307
|
+
|
|
2308
|
+
Select **Recovery code cleanup schedulers**:
|
|
2309
|
+
|
|
2310
|
+
<div align="center">
|
|
2311
|
+
<img src="django_auth_recovery_codes/docs/images/admin-schedule-link.png" alt="Admin schedule link" width="300">
|
|
2312
|
+
</div>
|
|
2313
|
+
|
|
2314
|
+
---
|
|
2315
|
+
|
|
2316
|
+
### Scheduling a Delete
|
|
2317
|
+
|
|
2318
|
+
<div align="center">
|
|
2319
|
+
<img src="django_auth_recovery_codes/docs/images/admin-schedule-delete.png" alt="Admin schedule delete" width="700">
|
|
2320
|
+
</div>
|
|
2321
|
+
|
|
2322
|
+
#### Quick Explanation
|
|
2323
|
+
|
|
2324
|
+
- **Retention days**: The number of days an expired or invalid code remains in the database before being deleted.
|
|
2325
|
+
- Example: If set to 30, a code will be deleted 30 days after it expires.
|
|
2326
|
+
- Default is set in your Django settings but can be overridden in the admin interface.
|
|
2327
|
+
- For testing, set this to `0` to remove codes immediately.
|
|
2328
|
+
|
|
2329
|
+
- **Run at**: The time the scheduler should run.
|
|
2330
|
+
|
|
2331
|
+
- **Schedule type**: How frequently the scheduler should run (`Once`, `Hourly`, `Daily`, `Weekly`, `Monthly`, `Quarterly`, `Yearly`).
|
|
2332
|
+
|
|
2333
|
+
- **Use with logger**: Records the scheduled deletion in a log file.
|
|
2334
|
+
|
|
2335
|
+
- **Delete empty batch**:
|
|
2336
|
+
- `True`: Removes the parent batch if no active codes remain.
|
|
2337
|
+
- `False`: Keeps the batch even if it is empty.
|
|
2338
|
+
|
|
2339
|
+
- **Name**: A descriptive name for the scheduler.
|
|
2340
|
+
|
|
2341
|
+
- **Next run**: The next time the scheduler should run. This must not be earlier than **Run at**, but can be left blank.
|
|
2342
|
+
- Note: The scheduler is idempotent. Once configured, it will follow the set rules without needing to be triggered manually. The **Next run** option simply allows for an additional one-off execution.
|
|
2343
|
+
|
|
2344
|
+
---
|
|
2345
|
+
|
|
2346
|
+
## Summary
|
|
2347
|
+
|
|
2348
|
+
|
|
2349
|
+
1. Generate your recovery codes.
|
|
2350
|
+
2. Click **Delete Codes** → Django-Q schedules the deletion.
|
|
2351
|
+
3. In the **Admin**, open **Recovery code cleanup schedulers**.
|
|
2352
|
+
4. Configure:
|
|
2353
|
+
- **Retention days** → how long codes stay before deletion (set `0` for immediate removal).
|
|
2354
|
+
- **Schedule type** → how often deletion runs.
|
|
2355
|
+
- **Run at / Next run** → when to start.
|
|
2356
|
+
- **Delete empty batch** → remove batch if no codes remain.
|
|
2357
|
+
|
|
2358
|
+
✅ That’s it. Django-Q will handle the cleanup automatically. Tasks are added to a queue and picked up by workers, so in most cases the cleanup will happen very quickly. Depending on your worker setup and workload, there may be a short delay, but it will always be processed.
|
|
2359
|
+
|
|
2360
|
+
---
|
|
2361
|
+
|
|
2362
|
+
### Visual Flow
|
|
2363
|
+
|
|
2364
|
+
```
|
|
2365
|
+
|
|
2366
|
+
Generate recovery codes
|
|
2367
|
+
│
|
|
2368
|
+
▼
|
|
2369
|
+
Click **Delete Codes**
|
|
2370
|
+
│
|
|
2371
|
+
▼
|
|
2372
|
+
Django-Q schedules deletion
|
|
2373
|
+
│
|
|
2374
|
+
▼
|
|
2375
|
+
Go to **Admin → Recovery code cleanup schedulers**
|
|
2376
|
+
│
|
|
2377
|
+
▼
|
|
2378
|
+
Configure scheduler:
|
|
2379
|
+
• Retention days
|
|
2380
|
+
• Run at / Next run
|
|
2381
|
+
• Schedule type
|
|
2382
|
+
• Delete empty batch
|
|
2383
|
+
│
|
|
2384
|
+
▼
|
|
2385
|
+
✅ Codes are cleaned up automatically
|
|
2386
|
+
|
|
2387
|
+
```
|
|
2388
|
+
|
|
2389
|
+
You can also run a scheduler to remove the audit reports for `Recovery Code` by using `Recovery code audit schedulers`. The audits are store in the `Recovery code Audit` model. The steps are same as the above steps.
|
|
2390
|
+
|
|
2391
|
+
|
|
2392
|
+
### Warning
|
|
2393
|
+
|
|
2394
|
+
In the `admin.py` interface under **Recovery Codes**, do not manually delete codes.
|
|
2395
|
+
The system is tied into the **RecoveryCodesBatch** model.
|
|
2396
|
+
|
|
2397
|
+
If you want to remove a code, **mark it as invalid** or **mark it for deletion** instead. This is important because the parent batch (`RecoveryCodesBatch`) tracks how many codes it has generated. This is good meaning it was generated and tied to its parent (RecoveryCodesBatch). Any action on the parent batch affects its children (the codes) which is the intended behaviour, but the reverse is not true which is also the intended behaviour. For example:
|
|
2398
|
+
|
|
2399
|
+
* If a batch is deleted, all its child codes are also deleted.
|
|
2400
|
+
* If a batch is marked as *pending deletion*, all its child codes are marked similarly.
|
|
2401
|
+
* If any of the children (codes) are marked as **invalid** or **for deletion**, the parent batch is not affected, and thus does not impact the other child codes.
|
|
2402
|
+
|
|
2403
|
+
#### Why this matters
|
|
2404
|
+
|
|
2405
|
+
When a user deletes all codes from the frontend:
|
|
2406
|
+
|
|
2407
|
+
1. The application marks the batch for deletion, which in turn marks its child codes.
|
|
2408
|
+
2. A scheduler later removes any codes marked for deletion.
|
|
2409
|
+
3. Once all child codes are deleted, the empty parent batch is automatically deleted.
|
|
2410
|
+
|
|
2411
|
+
If you manually delete child codes in a batch:
|
|
2412
|
+
|
|
2413
|
+
* The scheduler cannot correctly clean up the batch.
|
|
2414
|
+
* You will end up with an empty batch in the database, tied to nothing and effectively “floating” and unused. When the scheduler next runs, it will generate email reports for that batch, indicating that nothing was cleaned which is true, since the batch has no children. This will bury reports about actual code cleanup under a flood of emails making it hard to find your emails.
|
|
2415
|
+
|
|
2416
|
+
If you want to delete all codes **without waiting for the scheduler**, delete the **parent batch**. This safely removes all associated codes because any action on the parent affects its children.
|
|
2417
|
+
|
|
2418
|
+
> Note: Deleting a single child code manually does not deactivate the parent batch. Marking a single code as invalid or for deletion will not affect the rest of the batch.
|
|
2419
|
+
|
|
2420
|
+
#### Summary
|
|
2421
|
+
|
|
2422
|
+
1. Mark individual codes as **invalid** or **for deletion** in the admin interface, do **not manually delete** them.
|
|
2423
|
+
2. To delete all codes immediately, delete the **parent batch**, this is safer and ensures proper cleanup.
|
|
2424
|
+
|
|
2425
|
+
|
|
2426
|
+
---
|
|
2427
|
+
|
|
2428
|
+
|
|
2429
|
+
## Django-Q Flush Tasks Command
|
|
2430
|
+
|
|
2431
|
+
A custom Django management command to safely clear Django-Q tasks and scheduler entries.
|
|
2432
|
+
|
|
2433
|
+
- This command allows you to remove **failed tasks**, **scheduler entries**, or **all tasks** from the Django-Q queue.
|
|
2434
|
+
- This management command allows you to safely flush Django-Q tasks and scheduler entries directly from the command line, with confirmation prompts to prevent accidental data loss.
|
|
2435
|
+
|
|
2436
|
+
Why is this needed?
|
|
2437
|
+
|
|
2438
|
+
Flushing tasks via the command line allows you to clear all tasks in the queue useful if an error occurs, or if you want to remove invalid or outdated schedulers and start fresh and quickly without going through the UI.
|
|
2439
|
+
|
|
2440
|
+
|
|
2441
|
+
## Usage
|
|
2442
|
+
|
|
2443
|
+
Run the command using `manage.py`:
|
|
2444
|
+
|
|
2445
|
+
```bash
|
|
2446
|
+
python manage.py flush_tasks
|
|
2447
|
+
````
|
|
2448
|
+
|
|
2449
|
+
### Options
|
|
2450
|
+
|
|
2451
|
+
* `--failed` : Clear only the failed tasks.
|
|
2452
|
+
* `--scheduler` : Clear only the scheduler entries.
|
|
2453
|
+
* `--all` : Clear all tasks (failed and scheduled).
|
|
2454
|
+
* `--yes` : Skip confirmation prompts (use with caution).
|
|
2455
|
+
* `--noinput` : Supress the confirmation prompt
|
|
2456
|
+
|
|
2457
|
+
### Confirmation Prompt
|
|
2458
|
+
|
|
2459
|
+
By default, the command asks for confirmation before performing the flush. Example:
|
|
2460
|
+
|
|
2461
|
+
```bash
|
|
2462
|
+
python manage.py flush_tasks --all
|
|
2463
|
+
Are you sure you want to clear all tasks? [y/N]: yes
|
|
2464
|
+
Cleared 5 task(s).
|
|
2465
|
+
```
|
|
2466
|
+
|
|
2467
|
+
If you answer `N` or press Enter, the operation is cancelled.
|
|
2468
|
+
|
|
2469
|
+
---
|
|
2470
|
+
|
|
2471
|
+
## Quick Start Examples
|
|
2472
|
+
|
|
2473
|
+
* **Clear failed tasks only:**
|
|
2474
|
+
|
|
2475
|
+
```bash
|
|
2476
|
+
python manage.py flush_tasks --failed
|
|
2477
|
+
Are you sure you want to clear failed tasks? [y/N]: yes
|
|
2478
|
+
Cleared 3 failed task(s).
|
|
2479
|
+
```
|
|
2480
|
+
|
|
2481
|
+
* **Clear scheduler entries only:**
|
|
2482
|
+
|
|
2483
|
+
```bash
|
|
2484
|
+
python manage.py flush_tasks --scheduler
|
|
2485
|
+
Are you sure you want to clear scheduler tasks? [y/N]: yes
|
|
2486
|
+
Cleared 2 scheduler task(s).
|
|
2487
|
+
```
|
|
2488
|
+
|
|
2489
|
+
* **Clear all tasks:**
|
|
2490
|
+
|
|
2491
|
+
```bash
|
|
2492
|
+
python manage.py flush_tasks --all
|
|
2493
|
+
Are you sure you want to clear all tasks? [y/N]: yes
|
|
2494
|
+
Cleared 5 task(s).
|
|
2495
|
+
```
|
|
2496
|
+
|
|
2497
|
+
---
|
|
2498
|
+
|
|
2499
|
+
## Automated Use (No Confirmation)
|
|
2500
|
+
|
|
2501
|
+
If you need to flush tasks automatically (e.g., in scripts, cron jobs, or CI/CD pipelines), use the `--yes` flag to bypass the confirmation prompt:
|
|
2502
|
+
|
|
2503
|
+
```bash
|
|
2504
|
+
python manage.py flush_tasks --all --noinput
|
|
2505
|
+
Cleared 5 task(s).
|
|
2506
|
+
```
|
|
2507
|
+
|
|
2508
|
+
## Using without
|
|
2509
|
+
* `--noinput` can be combined with any of the options (`--failed`, `--scheduler`, `--all`).
|
|
2510
|
+
* Use this with caution, as tasks will be removed without user confirmation.
|
|
2511
|
+
|
|
2512
|
+
---
|
|
2513
|
+
|
|
2514
|
+
## Notes
|
|
2515
|
+
|
|
2516
|
+
* Only the management command file is required for command-line usage.
|
|
2517
|
+
* Helper functions can be included in the same file or imported from a `utils/` folder if preferred.
|
|
2518
|
+
* Use the `--yes` flag carefully in production environments.
|
|
2519
|
+
* This tool is particularly useful to remove old, stuck, or failed tasks that could interfere with Django-Q operation.
|
|
2520
|
+
|
|
2521
|
+
---
|
|
2522
|
+
|
|
2523
|
+
|
|
2524
|
+
5. **Django-Q not installed**
|
|
2525
|
+
|
|
2526
|
+
* Install via pip:
|
|
2527
|
+
|
|
2528
|
+
```bash
|
|
2529
|
+
pip install django-q
|
|
2530
|
+
```
|
|
2531
|
+
|
|
2532
|
+
* Ensure `django_q` is included in `INSTALLED_APPS` and configured in `settings.py`.
|
|
2533
|
+
|
|
2534
|
+
## Notes
|
|
2535
|
+
|
|
2536
|
+
* This command works for Django-Q tasks only. It does not affect other background jobs or Celery tasks.
|
|
2537
|
+
* Always use the confirmation prompt when clearing all tasks to avoid accidental data loss.
|
|
2538
|
+
* Keep the `flush_tasks.py` file in `management/commands` for command-line use.
|
|
2539
|
+
|
|
2540
|
+
-
|
|
2541
|
+
|
|
2542
|
+
[⬆ Back to Top](#top)
|
|
2543
|
+
|
|
2544
|
+
---
|
|
2545
|
+
|
|
2546
|
+
|
|
2547
|
+
## Quickstart Video Walkthrough
|
|
2548
|
+
|
|
2549
|
+
The following flags were used in the demo.
|
|
2550
|
+
You can **copy and paste** them into your `settings.py` file and modify them for your own use.
|
|
2551
|
+
|
|
2552
|
+
```python
|
|
2553
|
+
# =======================================
|
|
2554
|
+
# Adding the flags needed for the app
|
|
2555
|
+
# =======================================
|
|
2556
|
+
|
|
2557
|
+
# ===========================
|
|
2558
|
+
# 📧 Email / Admin
|
|
2559
|
+
# ===========================
|
|
2560
|
+
|
|
2561
|
+
DJANGO_AUTH_RECOVERY_CODES_ADMIN_SENDER_EMAIL = "your-email-here"
|
|
2562
|
+
DJANGO_AUTH_RECOVERY_CODE_ADMIN_EMAIL_HOST_USER = "your host email here"
|
|
2563
|
+
DJANGO_AUTH_RECOVERY_CODE_ADMIN_USERNAME = "your name"
|
|
2564
|
+
DJANGO_AUTH_RECOVERY_CODE_STORE_EMAIL_LOG = False
|
|
2565
|
+
|
|
2566
|
+
# ===========================
|
|
2567
|
+
# 🔑 Security / Keys
|
|
2568
|
+
# ===========================
|
|
2569
|
+
DJANGO_AUTH_RECOVERY_KEY = 'Recovery-key-here'
|
|
2570
|
+
|
|
2571
|
+
# ===========================
|
|
2572
|
+
# 📜 Audit / Retention
|
|
2573
|
+
# ===========================
|
|
2574
|
+
DJANGO_AUTH_RECOVERY_CODE_AUDIT_ENABLE_AUTO_CLEANUP = True
|
|
2575
|
+
DJANGO_AUTH_RECOVERY_CODE_AUDIT_RETENTION_DAYS = 30
|
|
2576
|
+
DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_RETENTION_DAYS = 30
|
|
2577
|
+
DJANGO_AUTH_RECOVERY_CODE_PURGE_DELETE_SCHEDULER_USE_LOGGER = True
|
|
2578
|
+
|
|
2579
|
+
# ===========================
|
|
2580
|
+
# ⏳ Rate Limiting / Cooldowns
|
|
2581
|
+
# ===========================
|
|
2582
|
+
|
|
2583
|
+
DJANGO_AUTH_RECOVERY_CODES_AUTH_RATE_LIMITER_USE_CACHE = True
|
|
2584
|
+
DJANGO_AUTH_RECOVERY_CODES_BASE_COOLDOWN = 300 # 5-minute lock down
|
|
2585
|
+
DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_CUTOFF_POINT = 3600
|
|
2586
|
+
DJANGO_AUTH_RECOVERY_CODES_COOLDOWN_MULTIPLIER = 2
|
|
2587
|
+
DJANGO_AUTH_RECOVERY_CODES_MAX_LOGIN_ATTEMPTS = 5
|
|
2588
|
+
|
|
2589
|
+
# ===========================
|
|
2590
|
+
# 📦 Caching
|
|
2591
|
+
# ===========================
|
|
2592
|
+
|
|
2593
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_MAX = 3600
|
|
2594
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_MIN = 1
|
|
2595
|
+
DJANGO_AUTH_RECOVERY_CODES_CACHE_TTL = 3600
|
|
2596
|
+
|
|
2597
|
+
# ===========================
|
|
2598
|
+
# 📊 Pagination / Limits
|
|
2599
|
+
# ===========================
|
|
2600
|
+
|
|
2601
|
+
DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE = 20
|
|
2602
|
+
DJANGO_AUTH_RECOVERY_CODE_PER_PAGE = 1
|
|
2603
|
+
DJANGO_AUTH_RECOVERY_CODES_BATCH_DELETE_SIZE = 400
|
|
2604
|
+
DJANGO_AUTH_RECOVERY_CODES_MAX_DELETIONS_PER_RUN = -1
|
|
2605
|
+
|
|
2606
|
+
# ===========================
|
|
2607
|
+
# 📂 Files / Naming
|
|
2608
|
+
# ===========================
|
|
2609
|
+
|
|
2610
|
+
DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FILE_NAME = "recovery_codes"
|
|
2611
|
+
DJANGO_AUTH_RECOVERY_CODES_DEFAULT_FORMAT = "txt"
|
|
2612
|
+
|
|
2613
|
+
# ===========================
|
|
2614
|
+
# 🌍 Site / Redirects
|
|
2615
|
+
# ===========================
|
|
2616
|
+
|
|
2617
|
+
DJANGO_AUTH_RECOVERY_CODES_SITE_NAME = "This is a demo tutorial page"
|
|
2618
|
+
DJANGO_AUTH_RECOVERY_CODE_REDIRECT_VIEW_AFTER_LOGOUT = "home" # redirect to a different page
|
|
2619
|
+
|
|
2620
|
+
# ===========================
|
|
2621
|
+
# 💬 Recovery Code Email Success Message
|
|
2622
|
+
# ===========================
|
|
2623
|
+
|
|
2624
|
+
DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG = "Hey, what's up? Your recovery codes have been sent to your email!"
|
|
2625
|
+
|
|
2626
|
+
# ===========================
|
|
2627
|
+
# 🧪 Email Backend (for testing)
|
|
2628
|
+
# ===========================
|
|
2629
|
+
|
|
2630
|
+
# Use Django's file-based email backend for testing purposes
|
|
2631
|
+
|
|
2632
|
+
EMAIL_BACKEND = "django.core.mail.backends.filebased.EmailBackend"
|
|
2633
|
+
EMAIL_FILE_PATH = BASE_DIR / "sent_emails"
|
|
2634
|
+
Path(EMAIL_FILE_PATH).mkdir(parents=True, exist_ok=True)
|
|
2635
|
+
|
|
2636
|
+
# ===========================
|
|
2637
|
+
# ⚙️ Django-Q Configuration
|
|
2638
|
+
# ===========================
|
|
2639
|
+
|
|
2640
|
+
# Add the Q Cluster needed for Django-Q task scheduling
|
|
2641
|
+
|
|
2642
|
+
Q_CLUSTER = {
|
|
2643
|
+
'name': 'recovery_codes',
|
|
2644
|
+
'workers': 2,
|
|
2645
|
+
'timeout': 300, # 5 minutes max per task
|
|
2646
|
+
'retry': 600, # retry after 10 minutes if a task fails (retry must be greater than timeout)
|
|
2647
|
+
'recycle': 500,
|
|
2648
|
+
'compress': True,
|
|
2649
|
+
'cpu_affinity': 1,
|
|
2650
|
+
'save_limit': 250,
|
|
2651
|
+
'queue_limit': 500,
|
|
2652
|
+
'orm': 'default',
|
|
2653
|
+
}
|
|
2654
|
+
|
|
2655
|
+
# ===========================
|
|
2656
|
+
# 🧭 Template Paths
|
|
2657
|
+
# ===========================
|
|
2658
|
+
# Add the path templates so that EmailSender knows where to look for the templates
|
|
2659
|
+
|
|
2660
|
+
import django_auth_recovery_codes
|
|
2661
|
+
from pathlib import Path
|
|
2662
|
+
|
|
2663
|
+
# Get the path to the installed package
|
|
2664
|
+
PACKAGE_DIR = Path(django_auth_recovery_codes.__file__).parent
|
|
2665
|
+
|
|
2666
|
+
# Define the templates directory within the package
|
|
2667
|
+
MYAPP_TEMPLATES_DIR = PACKAGE_DIR / "templates" / "django_auth_recovery_codes"
|
|
2668
|
+
|
|
2669
|
+
|
|
2670
|
+
|
|
2671
|
+
# ===========================
|
|
2672
|
+
# 🪵 Logging
|
|
2673
|
+
# ===========================
|
|
2674
|
+
# Add logging configuration to capture and log errors
|
|
2675
|
+
from django_auth_recovery_codes.loggers.logger_config import DJANGO_AUTH_RECOVERY_CODES_LOGGING
|
|
2676
|
+
LOGGING = DJANGO_AUTH_RECOVERY_CODES_LOGGING
|
|
2677
|
+
```
|
|
2678
|
+
|
|
2679
|
+
### Setup
|
|
2680
|
+
|
|
2681
|
+
Let’s get started! For this tutorial, we’ll install the package directly from GitHub since it hasn’t been published to PyPI yet:
|
|
2682
|
+
|
|
2683
|
+
```bash
|
|
2684
|
+
pip install git+https://github.cUku1/django_2fa_recovery_codes.git
|
|
2685
|
+
````
|
|
2686
|
+
|
|
2687
|
+
> 💡 **Note:** By the time this video goes live, the package will be available on PyPI. Then you can install it the usual way with:
|
|
2688
|
+
>
|
|
2689
|
+
> ```bash
|
|
2690
|
+
> pip install django_auth_recovery_codes
|
|
2691
|
+
> ```
|
|
2692
|
+
|
|
2693
|
+
After installation, you’re ready to follow along with the rest of the walkthrough.
|
|
2694
|
+
|
|
2695
|
+
[Watch the setup walkthrough here](https://www.loom.com/share/c85010766fc84f3481a9d720b5cbeb3e?sid=8c6263bb-cc7d-4b45-a9e9-da7eb92abbf5)
|
|
2696
|
+
|
|
2697
|
+
|
|
2698
|
+
### App Demonstration Walkthrough
|
|
2699
|
+
|
|
2700
|
+
Check out the app in action in the video below:
|
|
2701
|
+
|
|
2702
|
+
[▶ Watch the app demonstration walkthrough](https://www.loom.com/share/fe73afdd93de413aad934de594446ace?sid=9de90a08-d920-4bd4-9443-cb61caf3c7e9)
|
|
2703
|
+
|
|
2704
|
+
|
|
2705
|
+
|
|
2706
|
+
### View How Emails Are Displayed to the User (Backend)
|
|
2707
|
+
|
|
2708
|
+
> **Note:** For demonstration purposes, we are sending the emails to the backend. This means there is no styling applied here. In your own email inbox, they will appear fully styled.
|
|
2709
|
+
|
|
2710
|
+
[📧 View how the emails are sent to the user](https://www.loom.com/share/f762e0967f154f2b8dc0dc3bbcafeebd?sid=936405f8-c16f-4edf-9e2f-4b4039229724)
|
|
2711
|
+
|
|
2712
|
+
|
|
2713
|
+
### Add Django-Q to Schedule Task Deletion
|
|
2714
|
+
|
|
2715
|
+
This section provides a walkthrough on how to set up **Django-Q** to automatically delete tasks after completion.
|
|
2716
|
+
|
|
2717
|
+
[⚙️ Watch how to use Django-Q to delete tasks](https://www.loom.com/share/afb9b7a4073844f6b5e03fbdfda19bec?sid=b1e08b43-99aa-40aa-aa9e-85e835294f44)
|
|
2718
|
+
|
|
2719
|
+
|
|
2720
|
+
|
|
2721
|
+
### Some Flag Demonstrations
|
|
2722
|
+
|
|
2723
|
+
Here are a few examples of how you can configure different flags in the application demonstrated in video walkthrought.
|
|
2724
|
+
|
|
2725
|
+
- The first flag limits the UI to display **only 20 records** at a time, even if more exist.
|
|
2726
|
+
- The second flag specifies that **only one record is shown per page**, resulting in 20 pages each showing one record, in this example.
|
|
2727
|
+
|
|
2728
|
+
```bash
|
|
2729
|
+
DJANGO_AUTH_RECOVERY_CODE_MAX_VISIBLE = 20
|
|
2730
|
+
DJANGO_AUTH_RECOVERY_CODE_PER_PAGE = 1
|
|
2731
|
+
````
|
|
2732
|
+
|
|
2733
|
+
* You can also customise the message displayed after a user emails themselves a copy of their recovery codes:
|
|
2734
|
+
|
|
2735
|
+
```bash
|
|
2736
|
+
DJANGO_AUTH_RECOVERY_CODE_EMAIL_SUCCESS_MSG = "Hey, what's up? Your recovery codes have been sent to your email!"
|
|
2737
|
+
```
|
|
2738
|
+
|
|
2739
|
+
Plus a few other examples are demonstrated in the video below:
|
|
2740
|
+
|
|
2741
|
+
[🎛️ Watch flag demonstrations](https://www.loom.com/share/f9a809d42b4f413dbe8722638592ac44?sid=90d94191-ed56-4379-ab21-2510b0e70a24)
|
|
2742
|
+
|
|
2743
|
+
|
|
2744
|
+
### Optional: Add Emails to the Model
|
|
2745
|
+
|
|
2746
|
+
You can optionally add emails to the database for enhanced tracking or custom email management.
|
|
2747
|
+
|
|
2748
|
+
[📨 Watch how to add emails to the database](https://www.loom.com/share/aa58598b3e7242e4942a43d5fafab2a8?sid=f572ecf4-35fa-4ff3-bcbf-e9dc0f2ff465)
|
|
2749
|
+
|
|
2750
|
+
|
|
2751
|
+
|
|
2752
|
+
### Flushing the Tasks
|
|
2753
|
+
|
|
2754
|
+
Flushing tasks via the command line allows you to clear all tasks in the queue m useful if an error occurs,
|
|
2755
|
+
or if you want to remove invalid or outdated schedulers and start fresh.
|
|
2756
|
+
|
|
2757
|
+
[🧹 Watch how to flush the task scheduler](https://www.loom.com/share/aaf65308a451468dbb38accbeeb648c7?sid=b9bc295b-15dd-41ca-b75c-cd14776ae1bd)
|
|
2758
|
+
|
|
2759
|
+
|
|
2760
|
+
|
|
2761
|
+
|
|
2762
|
+
## Known Issues
|
|
2763
|
+
|
|
2764
|
+
- The app is responsive across all screen sizes.
|
|
2765
|
+
- However, on medium, small, or extra-small screens the `logout` button is not visible because the `hamburger` menu is not yet active.
|
|
2766
|
+
- This will be addressed in a future update.
|
|
2767
|
+
|
|
2768
|
+
|
|
2769
|
+
|
|
2770
|
+
## License
|
|
2771
|
+
- This package is licensed under the MIT License. See the LICENSE file for details.
|
|
2772
|
+
|
|
2773
|
+
## Credits
|
|
2774
|
+
-This library was created and maintained by Egbie Uku a.k.a EgbieAndersonUku1.
|
|
2775
|
+
|
|
2776
|
+
|
|
2777
|
+
---
|
|
2778
|
+
|
|
2779
|
+
|
|
2780
|
+
## Support
|
|
2781
|
+
If you find this project helpful, you can support it:
|
|
2782
|
+
|
|
2783
|
+
[](https://buymeacoffee.com/egbieu)
|
|
2784
|
+
|
|
2785
|
+
|
|
2786
|
+
---
|
|
2787
|
+
|