├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml ├── issue_template.md ├── lock.yml └── workflows │ ├── build.yml │ ├── codeql.yml │ └── codeql │ └── codeql-config.yml ├── .gitignore ├── ASPNETCore2JwtAuthentication.sln ├── BannedSymbols.txt ├── Directory.Build.props ├── Directory.Packages.props ├── LICENSE.md ├── README.md ├── _buid.cmd ├── common └── AssemblyInfo.cs ├── global.json ├── src ├── ASPNETCore2JwtAuthentication.AngularClient │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── _0-restore.bat │ ├── _1-ng-serve.bat │ ├── _2-ng-build-dev.bat │ ├── _2-ng-build-prod.bat │ ├── angular.json │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── ng │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── authentication │ │ │ │ ├── access-denied │ │ │ │ │ ├── access-denied.component.css │ │ │ │ │ ├── access-denied.component.html │ │ │ │ │ └── access-denied.component.ts │ │ │ │ ├── authentication-routing.module.ts │ │ │ │ ├── authentication.module.ts │ │ │ │ ├── change-password │ │ │ │ │ ├── change-password.component.css │ │ │ │ │ ├── change-password.component.html │ │ │ │ │ ├── change-password.component.ts │ │ │ │ │ ├── models │ │ │ │ │ │ └── change-password.ts │ │ │ │ │ └── services │ │ │ │ │ │ └── change-password.service.ts │ │ │ │ └── login │ │ │ │ │ ├── login.component.css │ │ │ │ │ ├── login.component.html │ │ │ │ │ └── login.component.ts │ │ │ ├── core │ │ │ │ ├── component │ │ │ │ │ └── header │ │ │ │ │ │ ├── header.component.css │ │ │ │ │ │ ├── header.component.html │ │ │ │ │ │ └── header.component.ts │ │ │ │ ├── core.module.ts │ │ │ │ ├── index.ts │ │ │ │ ├── models │ │ │ │ │ ├── auth-guard-permission.ts │ │ │ │ │ ├── auth-token-type.ts │ │ │ │ │ ├── auth-user.ts │ │ │ │ │ └── credentials.ts │ │ │ │ └── services │ │ │ │ │ ├── api-config.service.ts │ │ │ │ │ ├── app.config.ts │ │ │ │ │ ├── auth.guard.ts │ │ │ │ │ ├── auth.interceptor.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── browser-storage.service.ts │ │ │ │ │ ├── refresh-token.service.ts │ │ │ │ │ ├── token-store.service.ts │ │ │ │ │ ├── utils.service.ts │ │ │ │ │ └── xsrf.interceptor.ts │ │ │ ├── dashboard │ │ │ │ ├── call-protected-api │ │ │ │ │ ├── call-protected-api.component.css │ │ │ │ │ ├── call-protected-api.component.html │ │ │ │ │ └── call-protected-api.component.ts │ │ │ │ ├── dashboard-routing.module.ts │ │ │ │ ├── dashboard.module.ts │ │ │ │ └── protected-page │ │ │ │ │ ├── protected-page.component.css │ │ │ │ │ ├── protected-page.component.html │ │ │ │ │ └── protected-page.component.ts │ │ │ ├── page-not-found │ │ │ │ ├── page-not-found.component.css │ │ │ │ ├── page-not-found.component.html │ │ │ │ └── page-not-found.component.ts │ │ │ ├── shared │ │ │ │ ├── directives │ │ │ │ │ ├── equal-validator.directive.ts │ │ │ │ │ ├── has-auth-user-view-permission.directive.ts │ │ │ │ │ └── is-visible-for-auth-user.directive.ts │ │ │ │ └── shared.module.ts │ │ │ └── welcome │ │ │ │ ├── welcome.component.css │ │ │ │ ├── welcome.component.html │ │ │ │ └── welcome.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json ├── ASPNETCore2JwtAuthentication.Common │ ├── ASPNETCore2JwtAuthentication.Common.csproj │ └── ServerPath.cs ├── ASPNETCore2JwtAuthentication.ConsoleClient │ ├── ASPNETCore2JwtAuthentication.ConsoleClient.csproj │ ├── Program.cs │ ├── Token.cs │ ├── User.cs │ ├── _0-restore.bat │ └── _1-dotnet_run.bat ├── ASPNETCore2JwtAuthentication.DataLayer │ ├── ASPNETCore2JwtAuthentication.DataLayer.csproj │ ├── Context │ │ ├── ApplicationDbContext.cs │ │ ├── ApplicationDbContextFactory.cs │ │ └── IUnitOfWork.cs │ ├── Migrations │ │ ├── .editorconfig │ │ ├── 20230302094448_V2023_03_02_1314.Designer.cs │ │ ├── 20230302094448_V2023_03_02_1314.cs │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── _01-add_migrations.cmd │ └── _02-update_db.cmd ├── ASPNETCore2JwtAuthentication.DomainClasses │ ├── ASPNETCore2JwtAuthentication.DomainClasses.csproj │ ├── Role.cs │ ├── User.cs │ ├── UserRole.cs │ └── UserToken.cs ├── ASPNETCore2JwtAuthentication.IntegrationTests │ ├── ASPNETCore2JwtAuthentication.IntegrationTests.csproj │ ├── Base │ │ ├── CustomWebApplicationFactory.cs │ │ ├── TestsHttpClient.cs │ │ └── TestsHttpClientModel.cs │ ├── JwtTests.cs │ ├── Models │ │ ├── MyProtectedApiResponse.cs │ │ └── Token.cs │ ├── _0-restore.bat │ └── _1-dotnet_test.bat ├── ASPNETCore2JwtAuthentication.IoCConfig │ ├── ASPNETCore2JwtAuthentication.IoCConfig.csproj │ └── ConfigureServicesExtensions.cs ├── ASPNETCore2JwtAuthentication.Models │ ├── ASPNETCore2JwtAuthentication.Models.csproj │ ├── AdminUserSeed.cs │ ├── ApiSettings.cs │ ├── BearerTokensOptions.cs │ ├── ChangePasswordViewModel.cs │ ├── JwtTokensData.cs │ └── Token.cs ├── ASPNETCore2JwtAuthentication.Postman │ ├── JWT Sample.postman_collection.json │ ├── JWT.humao.rest-client.rest │ ├── JWT.strest.yml │ └── run.strest.bat ├── ASPNETCore2JwtAuthentication.Services │ ├── ASPNETCore2JwtAuthentication.Services.csproj │ ├── AntiForgeryCookieService.cs │ ├── CustomRoles.cs │ ├── DbInitializerService.cs │ ├── DeviceDetectionService.cs │ ├── IAntiForgeryCookieService.cs │ ├── IDbInitializerService.cs │ ├── IDeviceDetectionService.cs │ ├── IRolesService.cs │ ├── ISecurityService.cs │ ├── ITokenFactoryService.cs │ ├── ITokenStoreService.cs │ ├── ITokenValidatorService.cs │ ├── IUsersService.cs │ ├── RolesService.cs │ ├── SecurityService.cs │ ├── TokenFactoryService.cs │ ├── TokenStoreService.cs │ ├── TokenValidatorService.cs │ └── UsersService.cs └── ASPNETCore2JwtAuthentication.WebApp │ ├── ASPNETCore2JwtAuthentication.WebApp.csproj │ ├── Controllers │ ├── AccountController.cs │ ├── ApiSettingsController.cs │ ├── ChangePasswordController.cs │ ├── MyProtectedAdminApiController.cs │ ├── MyProtectedApiController.cs │ └── MyProtectedEditorsApiController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── _0-restore.bat │ ├── _1-dotnet_run.bat │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── libman.json │ └── wwwroot │ ├── app_data │ └── git.keep │ ├── favicon.ico │ ├── images │ └── jwtauth.png │ ├── index.html │ └── lib │ ├── bootstrap │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── js │ │ ├── dist │ │ │ ├── alert.js │ │ │ ├── alert.js.map │ │ │ ├── base-component.js │ │ │ ├── base-component.js.map │ │ │ ├── button.js │ │ │ ├── button.js.map │ │ │ ├── carousel.js │ │ │ ├── carousel.js.map │ │ │ ├── collapse.js │ │ │ ├── collapse.js.map │ │ │ ├── dom │ │ │ │ ├── data.js │ │ │ │ ├── data.js.map │ │ │ │ ├── event-handler.js │ │ │ │ ├── event-handler.js.map │ │ │ │ ├── manipulator.js │ │ │ │ ├── manipulator.js.map │ │ │ │ ├── selector-engine.js │ │ │ │ └── selector-engine.js.map │ │ │ ├── dropdown.js │ │ │ ├── dropdown.js.map │ │ │ ├── modal.js │ │ │ ├── modal.js.map │ │ │ ├── offcanvas.js │ │ │ ├── offcanvas.js.map │ │ │ ├── popover.js │ │ │ ├── popover.js.map │ │ │ ├── scrollspy.js │ │ │ ├── scrollspy.js.map │ │ │ ├── tab.js │ │ │ ├── tab.js.map │ │ │ ├── toast.js │ │ │ ├── toast.js.map │ │ │ ├── tooltip.js │ │ │ ├── tooltip.js.map │ │ │ └── util │ │ │ │ ├── backdrop.js │ │ │ │ ├── backdrop.js.map │ │ │ │ ├── component-functions.js │ │ │ │ ├── component-functions.js.map │ │ │ │ ├── config.js │ │ │ │ ├── config.js.map │ │ │ │ ├── focustrap.js │ │ │ │ ├── focustrap.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── sanitizer.js │ │ │ │ ├── sanitizer.js.map │ │ │ │ ├── scrollbar.js │ │ │ │ ├── scrollbar.js.map │ │ │ │ ├── swipe.js │ │ │ │ ├── swipe.js.map │ │ │ │ ├── template-factory.js │ │ │ │ └── template-factory.js.map │ │ └── src │ │ │ ├── alert.js │ │ │ ├── base-component.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dom │ │ │ ├── data.js │ │ │ ├── event-handler.js │ │ │ ├── manipulator.js │ │ │ └── selector-engine.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── offcanvas.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── toast.js │ │ │ ├── tooltip.js │ │ │ └── util │ │ │ ├── backdrop.js │ │ │ ├── component-functions.js │ │ │ ├── config.js │ │ │ ├── focustrap.js │ │ │ ├── index.js │ │ │ ├── sanitizer.js │ │ │ ├── scrollbar.js │ │ │ ├── swipe.js │ │ │ └── template-factory.js │ ├── package.json │ └── scss │ │ ├── _accordion.scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _containers.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _helpers.scss │ │ ├── _images.scss │ │ ├── _list-group.scss │ │ ├── _maps.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _offcanvas.scss │ │ ├── _pagination.scss │ │ ├── _placeholders.scss │ │ ├── _popover.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap-utilities.scss │ │ ├── bootstrap.scss │ │ ├── forms │ │ ├── _floating-labels.scss │ │ ├── _form-check.scss │ │ ├── _form-control.scss │ │ ├── _form-range.scss │ │ ├── _form-select.scss │ │ ├── _form-text.scss │ │ ├── _input-group.scss │ │ ├── _labels.scss │ │ └── _validation.scss │ │ ├── helpers │ │ ├── _clearfix.scss │ │ ├── _color-bg.scss │ │ ├── _colored-links.scss │ │ ├── _position.scss │ │ ├── _ratio.scss │ │ ├── _stacks.scss │ │ ├── _stretched-link.scss │ │ ├── _text-truncation.scss │ │ ├── _visually-hidden.scss │ │ └── _vr.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _backdrop.scss │ │ ├── _banner.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _color-scheme.scss │ │ ├── _container.scss │ │ ├── _deprecate.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _table-variants.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ ├── _utilities.scss │ │ └── _visually-hidden.scss │ │ ├── utilities │ │ └── _api.scss │ │ └── vendor │ │ └── _rfs.scss │ ├── jquery │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ ├── external │ │ └── sizzle │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── sizzle.js │ │ │ ├── sizzle.min.js │ │ │ └── sizzle.min.map │ ├── package.json │ └── src │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── script.js │ │ ├── var │ │ │ ├── location.js │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── DOMEval.js │ │ ├── access.js │ │ ├── camelCase.js │ │ ├── init.js │ │ ├── isAttached.js │ │ ├── nodeName.js │ │ ├── parseHTML.js │ │ ├── parseXML.js │ │ ├── ready-no-deferred.js │ │ ├── ready.js │ │ ├── readyException.js │ │ ├── stripAndCollapse.js │ │ ├── support.js │ │ ├── toType.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── adjustCSS.js │ │ ├── curCSS.js │ │ ├── finalPropName.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── showHide.js │ │ ├── support.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHiddenWithinTree.js │ │ │ ├── rboxStyle.js │ │ │ ├── rcustomProp.js │ │ │ ├── rnumnonpx.js │ │ │ └── swap.js │ │ ├── data.js │ │ ├── data │ │ ├── Data.js │ │ └── var │ │ │ ├── acceptData.js │ │ │ ├── dataPriv.js │ │ │ └── dataUser.js │ │ ├── deferred.js │ │ ├── deferred │ │ └── exceptionHook.js │ │ ├── deprecated.js │ │ ├── deprecated │ │ ├── ajax-event-alias.js │ │ └── event.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ └── animatedSelector.js │ │ ├── event.js │ │ ├── event │ │ ├── focusin.js │ │ ├── support.js │ │ └── trigger.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── buildFragment.js │ │ ├── getAll.js │ │ ├── setGlobalEval.js │ │ ├── support.js │ │ ├── var │ │ │ ├── rscriptType.js │ │ │ └── rtagName.js │ │ └── wrapMap.js │ │ ├── offset.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ ├── dir.js │ │ │ ├── rneedsContext.js │ │ │ └── siblings.js │ │ ├── var │ │ ├── ObjectFunctionString.js │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── document.js │ │ ├── documentElement.js │ │ ├── flat.js │ │ ├── fnToString.js │ │ ├── getProto.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── isFunction.js │ │ ├── isWindow.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rcheckableType.js │ │ ├── rcssNum.js │ │ ├── rnothtmlwhite.js │ │ ├── rtrimCSS.js │ │ ├── slice.js │ │ ├── support.js │ │ ├── toString.js │ │ └── whitespace.js │ │ └── wrap.js │ └── jwt-decode │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ └── package.json ├── tag-it.bat └── update-dependencies.bat /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.github/workflows/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/.gitignore -------------------------------------------------------------------------------- /ASPNETCore2JwtAuthentication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/ASPNETCore2JwtAuthentication.sln -------------------------------------------------------------------------------- /BannedSymbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/BannedSymbols.txt -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/README.md -------------------------------------------------------------------------------- /_buid.cmd: -------------------------------------------------------------------------------- 1 | dotnet build 2 | pause -------------------------------------------------------------------------------- /common/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: CLSCompliant(false)] 2 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/global.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/.editorconfig -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/.gitignore -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/README.md -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/_0-restore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/_0-restore.bat -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/_1-ng-serve.bat: -------------------------------------------------------------------------------- 1 | ng serve -o -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/_2-ng-build-dev.bat: -------------------------------------------------------------------------------- 1 | ng build --base-href /AngularClient/ --watch -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/_2-ng-build-prod.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/_2-ng-build-prod.bat -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/angular.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/e2e/app.po.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/karma.conf.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/ng: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/package.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/protractor.conf.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/app.component.html -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/app.component.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/app.module.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/access-denied/access-denied.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/access-denied/access-denied.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/access-denied/access-denied.component.html -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/access-denied/access-denied.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/access-denied/access-denied.component.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/authentication-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/authentication-routing.module.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/authentication.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/authentication.module.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/change-password/change-password.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/change-password/change-password.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/change-password/change-password.component.html -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/change-password/change-password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/change-password/change-password.component.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/change-password/models/change-password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/change-password/models/change-password.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/change-password/services/change-password.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/change-password/services/change-password.service.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/login/login.component.html -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/authentication/login/login.component.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/component/header/header.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/component/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/component/header/header.component.html -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/component/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/component/header/header.component.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/index.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/models/auth-guard-permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/models/auth-guard-permission.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/models/auth-token-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/models/auth-token-type.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/models/auth-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/models/auth-user.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/models/credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/models/credentials.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/api-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/api-config.service.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/app.config.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/auth.guard.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/auth.interceptor.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/auth.service.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/browser-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/browser-storage.service.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/refresh-token.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/refresh-token.service.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/token-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/token-store.service.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/utils.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/utils.service.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/xsrf.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/core/services/xsrf.interceptor.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/call-protected-api/call-protected-api.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/call-protected-api/call-protected-api.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/call-protected-api/call-protected-api.component.html -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/call-protected-api/call-protected-api.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/call-protected-api/call-protected-api.component.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/dashboard-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/dashboard-routing.module.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/dashboard.module.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/protected-page/protected-page.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/protected-page/protected-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/protected-page/protected-page.component.html -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/protected-page/protected-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/dashboard/protected-page/protected-page.component.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/page-not-found/page-not-found.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/page-not-found/page-not-found.component.html: -------------------------------------------------------------------------------- 1 |

2 | page-not-found works! 3 |

4 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/page-not-found/page-not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/page-not-found/page-not-found.component.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/shared/directives/equal-validator.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/shared/directives/equal-validator.directive.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/shared/directives/has-auth-user-view-permission.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/shared/directives/has-auth-user-view-permission.directive.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/shared/directives/is-visible-for-auth-user.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/shared/directives/is-visible-for-auth-user.directive.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/welcome/welcome.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/welcome/welcome.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/welcome/welcome.component.html -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/app/welcome/welcome.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/app/welcome/welcome.component.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/environments/environment.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/favicon.ico -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/index.html -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/main.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/polyfills.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/styles.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/test.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/src/typings.d.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/tsconfig.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.AngularClient/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.AngularClient/tslint.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Common/ASPNETCore2JwtAuthentication.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Common/ASPNETCore2JwtAuthentication.Common.csproj -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Common/ServerPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Common/ServerPath.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.ConsoleClient/ASPNETCore2JwtAuthentication.ConsoleClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.ConsoleClient/ASPNETCore2JwtAuthentication.ConsoleClient.csproj -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.ConsoleClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.ConsoleClient/Program.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.ConsoleClient/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.ConsoleClient/Token.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.ConsoleClient/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.ConsoleClient/User.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.ConsoleClient/_0-restore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.ConsoleClient/_0-restore.bat -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.ConsoleClient/_1-dotnet_run.bat: -------------------------------------------------------------------------------- 1 | dotnet run 2 | pause -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DataLayer/ASPNETCore2JwtAuthentication.DataLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DataLayer/ASPNETCore2JwtAuthentication.DataLayer.csproj -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DataLayer/Context/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DataLayer/Context/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DataLayer/Context/ApplicationDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DataLayer/Context/ApplicationDbContextFactory.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DataLayer/Context/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DataLayer/Context/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DataLayer/Migrations/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | generated_code = true 3 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DataLayer/Migrations/20230302094448_V2023_03_02_1314.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DataLayer/Migrations/20230302094448_V2023_03_02_1314.Designer.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DataLayer/Migrations/20230302094448_V2023_03_02_1314.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DataLayer/Migrations/20230302094448_V2023_03_02_1314.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DataLayer/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DataLayer/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DataLayer/_01-add_migrations.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DataLayer/_01-add_migrations.cmd -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DataLayer/_02-update_db.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DataLayer/_02-update_db.cmd -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DomainClasses/ASPNETCore2JwtAuthentication.DomainClasses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DomainClasses/ASPNETCore2JwtAuthentication.DomainClasses.csproj -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DomainClasses/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DomainClasses/Role.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DomainClasses/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DomainClasses/User.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DomainClasses/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DomainClasses/UserRole.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.DomainClasses/UserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.DomainClasses/UserToken.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IntegrationTests/ASPNETCore2JwtAuthentication.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.IntegrationTests/ASPNETCore2JwtAuthentication.IntegrationTests.csproj -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IntegrationTests/Base/CustomWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.IntegrationTests/Base/CustomWebApplicationFactory.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IntegrationTests/Base/TestsHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.IntegrationTests/Base/TestsHttpClient.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IntegrationTests/Base/TestsHttpClientModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.IntegrationTests/Base/TestsHttpClientModel.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IntegrationTests/JwtTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.IntegrationTests/JwtTests.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IntegrationTests/Models/MyProtectedApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.IntegrationTests/Models/MyProtectedApiResponse.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IntegrationTests/Models/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.IntegrationTests/Models/Token.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IntegrationTests/_0-restore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.IntegrationTests/_0-restore.bat -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IntegrationTests/_1-dotnet_test.bat: -------------------------------------------------------------------------------- 1 | dotnet test 2 | pause -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IoCConfig/ASPNETCore2JwtAuthentication.IoCConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.IoCConfig/ASPNETCore2JwtAuthentication.IoCConfig.csproj -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.IoCConfig/ConfigureServicesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.IoCConfig/ConfigureServicesExtensions.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Models/ASPNETCore2JwtAuthentication.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Models/ASPNETCore2JwtAuthentication.Models.csproj -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Models/AdminUserSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Models/AdminUserSeed.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Models/ApiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Models/ApiSettings.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Models/BearerTokensOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Models/BearerTokensOptions.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Models/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Models/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Models/JwtTokensData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Models/JwtTokensData.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Models/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Models/Token.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Postman/JWT Sample.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Postman/JWT Sample.postman_collection.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Postman/JWT.humao.rest-client.rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Postman/JWT.humao.rest-client.rest -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Postman/JWT.strest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Postman/JWT.strest.yml -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Postman/run.strest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Postman/run.strest.bat -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/ASPNETCore2JwtAuthentication.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/ASPNETCore2JwtAuthentication.Services.csproj -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/AntiForgeryCookieService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/AntiForgeryCookieService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/CustomRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/CustomRoles.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/DbInitializerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/DbInitializerService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/DeviceDetectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/DeviceDetectionService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/IAntiForgeryCookieService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/IAntiForgeryCookieService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/IDbInitializerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/IDbInitializerService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/IDeviceDetectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/IDeviceDetectionService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/IRolesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/IRolesService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/ISecurityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/ISecurityService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/ITokenFactoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/ITokenFactoryService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/ITokenStoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/ITokenStoreService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/ITokenValidatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/ITokenValidatorService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/IUsersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/IUsersService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/RolesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/RolesService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/SecurityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/SecurityService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/TokenFactoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/TokenFactoryService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/TokenStoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/TokenStoreService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/TokenValidatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/TokenValidatorService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.Services/UsersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.Services/UsersService.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/ASPNETCore2JwtAuthentication.WebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/ASPNETCore2JwtAuthentication.WebApp.csproj -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/Controllers/ApiSettingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/Controllers/ApiSettingsController.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/Controllers/ChangePasswordController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/Controllers/ChangePasswordController.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/Controllers/MyProtectedAdminApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/Controllers/MyProtectedAdminApiController.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/Controllers/MyProtectedApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/Controllers/MyProtectedApiController.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/Controllers/MyProtectedEditorsApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/Controllers/MyProtectedEditorsApiController.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/Program.cs -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/_0-restore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/_0-restore.bat -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/_1-dotnet_run.bat: -------------------------------------------------------------------------------- 1 | dotnet watch run -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/appsettings.Development.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/appsettings.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/libman.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/app_data/git.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/images/jwtauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/images/jwtauth.png -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/index.html -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/alert.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/alert.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/alert.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/base-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/base-component.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/base-component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/base-component.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/button.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/button.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/button.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/carousel.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/carousel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/carousel.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/collapse.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/collapse.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/collapse.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/data.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/data.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/data.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/event-handler.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/event-handler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/event-handler.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/manipulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/manipulator.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/manipulator.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/manipulator.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/selector-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/selector-engine.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/selector-engine.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dom/selector-engine.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dropdown.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dropdown.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/dropdown.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/modal.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/modal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/modal.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/offcanvas.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/offcanvas.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/offcanvas.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/popover.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/popover.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/popover.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/scrollspy.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/scrollspy.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/scrollspy.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/tab.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/tab.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/toast.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/toast.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/toast.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/tooltip.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/tooltip.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/tooltip.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/backdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/backdrop.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/backdrop.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/backdrop.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/component-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/component-functions.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/component-functions.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/component-functions.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/config.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/config.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/config.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/focustrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/focustrap.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/focustrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/focustrap.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/index.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/index.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/sanitizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/sanitizer.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/sanitizer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/sanitizer.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/scrollbar.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/scrollbar.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/scrollbar.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/swipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/swipe.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/swipe.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/swipe.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/template-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/template-factory.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/template-factory.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/dist/util/template-factory.js.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/base-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/base-component.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/button.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/carousel.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/collapse.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/dom/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/dom/data.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/dom/event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/dom/event-handler.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/dom/manipulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/dom/manipulator.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/dom/selector-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/dom/selector-engine.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/dropdown.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/offcanvas.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/popover.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/scrollspy.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/toast.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/tooltip.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/backdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/backdrop.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/component-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/component-functions.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/config.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/focustrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/focustrap.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/index.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/sanitizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/sanitizer.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/scrollbar.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/swipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/swipe.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/template-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/js/src/util/template-factory.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/package.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_accordion.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_containers.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_helpers.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_maps.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_offcanvas.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_placeholders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_placeholders.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/bootstrap-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/bootstrap-utilities.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_floating-labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_floating-labels.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_form-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_form-check.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_form-control.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_form-range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_form-range.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_form-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_form-select.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_form-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_form-text.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_input-group.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_labels.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/forms/_validation.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_clearfix.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_color-bg.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_color-bg.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_colored-links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_colored-links.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_position.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_ratio.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_stacks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_stacks.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_stretched-link.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_text-truncation.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_visually-hidden.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_vr.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/helpers/_vr.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_backdrop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_backdrop.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_banner.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_color-scheme.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_container.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_table-variants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_table-variants.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_utilities.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/mixins/_visually-hidden.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/utilities/_api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/utilities/_api.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/bower.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/external/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/external/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/external/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/external/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.map -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/package.json -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return { guid: Date.now() }; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/camelCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/camelCase.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/isAttached.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/isAttached.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/nodeName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/nodeName.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/parseXML.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/ready-no-deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/ready-no-deferred.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/readyException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/readyException.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/stripAndCollapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/stripAndCollapse.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/support.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/toType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/toType.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/finalPropName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/finalPropName.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/isHiddenWithinTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/isHiddenWithinTree.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/rboxStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/rboxStyle.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/rcustomProp.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | "use strict"; 4 | 5 | return /^--/; 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/data.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/deferred/exceptionHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/deferred/exceptionHook.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/deprecated/ajax-event-alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/deprecated/ajax-event-alias.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/deprecated/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/deprecated/event.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/event.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/buildFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/buildFragment.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/setGlobalEval.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/var/rscriptType.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/var/rtagName.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/traversing/var/rneedsContext.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/ObjectFunctionString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/ObjectFunctionString.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/document.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/flat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/flat.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/fnToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/fnToString.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/isFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/isFunction.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/isWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/isWindow.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/rcheckableType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/rcheckableType.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/rnothtmlwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/rnothtmlwhite.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/rtrimCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/rtrimCSS.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/var/whitespace.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jwt-decode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jwt-decode/CHANGELOG.md -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jwt-decode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jwt-decode/LICENSE -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jwt-decode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jwt-decode/README.md -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jwt-decode/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jwt-decode/index.d.ts -------------------------------------------------------------------------------- /src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jwt-decode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/src/ASPNETCore2JwtAuthentication.WebApp/wwwroot/lib/jwt-decode/package.json -------------------------------------------------------------------------------- /tag-it.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/tag-it.bat -------------------------------------------------------------------------------- /update-dependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ASPNETCore2JwtAuthentication/HEAD/update-dependencies.bat --------------------------------------------------------------------------------