├── .gitattributes ├── .gitignore ├── API ├── API.csproj ├── Controllers │ └── CoffeeShopController.cs ├── Models │ └── CoffeeShopModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── CoffeeShopService.cs │ └── ICoffeeShopService.cs ├── appsettings.Development.json └── appsettings.json ├── Client ├── App.razor ├── Client.csproj ├── Pages │ ├── CoffeeShops.razor │ ├── CoffeeShops.razor.cs │ ├── CoffeeShops.razor.css │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.razor │ ├── Login.cshtml │ ├── Login.cshtml.cs │ ├── Logout.cshtml │ ├── Logout.cshtml.cs │ ├── _Host.cshtml │ └── _Layout.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── ITokenService.cs │ ├── IdentityServerSettings.cs │ └── TokenService.cs ├── Shared │ ├── MainLayout.razor │ ├── MainLayout.razor.css │ ├── NavMenu.razor │ ├── NavMenu.razor.css │ ├── RedirectToLogin.razor │ ├── RedirectToLogin.razor.cs │ ├── RedirectToLogin.razor.css │ └── SurveyPrompt.razor ├── _Imports.razor ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ └── site.css │ └── favicon.ico ├── CoffeeShopper.sln ├── DataAccess ├── Data │ └── ApplicationDbContext.cs ├── DataAccess.csproj ├── Entities │ └── CoffeeShop.cs └── Migrations │ ├── 20220104074353_InitialAppDbContextMigration.Designer.cs │ ├── 20220104074353_InitialAppDbContextMigration.cs │ ├── 20220104081850_AddCoffeeShops.Designer.cs │ ├── 20220104081850_AddCoffeeShops.cs │ └── ApplicationDbContextModelSnapshot.cs ├── README.md └── Server ├── Config.cs ├── Data └── AspNetIdentityDbContext.cs ├── Migrations ├── 20220105064338_InitialIdentityServerMigration.Designer.cs ├── 20220105064338_InitialIdentityServerMigration.cs ├── AspNetIdentityDb │ ├── 20220105071113_InitialAspNetIdentityMigration.Designer.cs │ ├── 20220105071113_InitialAspNetIdentityMigration.cs │ └── AspNetIdentityDbContextModelSnapshot.cs ├── ConfigurationDb │ ├── 20220105064353_InitialIdentityServerMigration.Designer.cs │ ├── 20220105064353_InitialIdentityServerMigration.cs │ └── ConfigurationDbContextModelSnapshot.cs └── PersistedGrantDbContextModelSnapshot.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Quickstart ├── Account │ ├── AccountController.cs │ ├── AccountOptions.cs │ ├── ExternalController.cs │ ├── ExternalProvider.cs │ ├── LoggedOutViewModel.cs │ ├── LoginInputModel.cs │ ├── LoginViewModel.cs │ ├── LogoutInputModel.cs │ ├── LogoutViewModel.cs │ └── RedirectViewModel.cs ├── Consent │ ├── ConsentController.cs │ ├── ConsentInputModel.cs │ ├── ConsentOptions.cs │ ├── ConsentViewModel.cs │ ├── ProcessConsentResult.cs │ └── ScopeViewModel.cs ├── Device │ ├── DeviceAuthorizationInputModel.cs │ ├── DeviceAuthorizationViewModel.cs │ └── DeviceController.cs ├── Diagnostics │ ├── DiagnosticsController.cs │ └── DiagnosticsViewModel.cs ├── Extensions.cs ├── Grants │ ├── GrantsController.cs │ └── GrantsViewModel.cs ├── Home │ ├── ErrorViewModel.cs │ └── HomeController.cs ├── SecurityHeadersAttribute.cs └── TestUsers.cs ├── SeedData.cs ├── Server.csproj ├── Views ├── Account │ ├── AccessDenied.cshtml │ ├── LoggedOut.cshtml │ ├── Login.cshtml │ └── Logout.cshtml ├── Consent │ └── Index.cshtml ├── Device │ ├── Success.cshtml │ ├── UserCodeCapture.cshtml │ └── UserCodeConfirmation.cshtml ├── Diagnostics │ └── Index.cshtml ├── Grants │ └── Index.cshtml ├── Home │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ ├── Redirect.cshtml │ ├── _Layout.cshtml │ ├── _Nav.cshtml │ ├── _ScopeListItem.cshtml │ └── _ValidationSummary.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── tempkey.jwk └── wwwroot ├── css ├── site.css ├── site.min.css └── site.scss ├── favicon.ico ├── icon.jpg ├── icon.png ├── js ├── signin-redirect.js └── signout-redirect.js └── lib ├── bootstrap ├── LICENSE ├── README.md ├── dist │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map └── scss │ ├── _alert.scss │ ├── _badge.scss │ ├── _breadcrumb.scss │ ├── _button-group.scss │ ├── _buttons.scss │ ├── _card.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _code.scss │ ├── _custom-forms.scss │ ├── _dropdown.scss │ ├── _forms.scss │ ├── _functions.scss │ ├── _grid.scss │ ├── _images.scss │ ├── _input-group.scss │ ├── _jumbotron.scss │ ├── _list-group.scss │ ├── _media.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _nav.scss │ ├── _navbar.scss │ ├── _pagination.scss │ ├── _popover.scss │ ├── _print.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.scss │ ├── mixins │ ├── _alert.scss │ ├── _background-variant.scss │ ├── _badge.scss │ ├── _border-radius.scss │ ├── _box-shadow.scss │ ├── _breakpoints.scss │ ├── _buttons.scss │ ├── _caret.scss │ ├── _clearfix.scss │ ├── _deprecate.scss │ ├── _float.scss │ ├── _forms.scss │ ├── _gradients.scss │ ├── _grid-framework.scss │ ├── _grid.scss │ ├── _hover.scss │ ├── _image.scss │ ├── _list-group.scss │ ├── _lists.scss │ ├── _nav-divider.scss │ ├── _pagination.scss │ ├── _reset-text.scss │ ├── _resize.scss │ ├── _screen-reader.scss │ ├── _size.scss │ ├── _table-row.scss │ ├── _text-emphasis.scss │ ├── _text-hide.scss │ ├── _text-truncate.scss │ ├── _transition.scss │ └── _visibility.scss │ ├── utilities │ ├── _align.scss │ ├── _background.scss │ ├── _borders.scss │ ├── _clearfix.scss │ ├── _display.scss │ ├── _embed.scss │ ├── _flex.scss │ ├── _float.scss │ ├── _overflow.scss │ ├── _position.scss │ ├── _screenreaders.scss │ ├── _shadows.scss │ ├── _sizing.scss │ ├── _spacing.scss │ ├── _stretched-link.scss │ ├── _text.scss │ └── _visibility.scss │ └── vendor │ └── _rfs.scss └── jquery ├── LICENSE.txt ├── README.md └── dist ├── jquery.js ├── jquery.min.js ├── jquery.min.map ├── jquery.slim.js ├── jquery.slim.min.js └── jquery.slim.min.map /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/.gitignore -------------------------------------------------------------------------------- /API/API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/API/API.csproj -------------------------------------------------------------------------------- /API/Controllers/CoffeeShopController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/API/Controllers/CoffeeShopController.cs -------------------------------------------------------------------------------- /API/Models/CoffeeShopModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/API/Models/CoffeeShopModel.cs -------------------------------------------------------------------------------- /API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/API/Program.cs -------------------------------------------------------------------------------- /API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/API/Properties/launchSettings.json -------------------------------------------------------------------------------- /API/Services/CoffeeShopService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/API/Services/CoffeeShopService.cs -------------------------------------------------------------------------------- /API/Services/ICoffeeShopService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/API/Services/ICoffeeShopService.cs -------------------------------------------------------------------------------- /API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/API/appsettings.Development.json -------------------------------------------------------------------------------- /API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/API/appsettings.json -------------------------------------------------------------------------------- /Client/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/App.razor -------------------------------------------------------------------------------- /Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Client.csproj -------------------------------------------------------------------------------- /Client/Pages/CoffeeShops.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/CoffeeShops.razor -------------------------------------------------------------------------------- /Client/Pages/CoffeeShops.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/CoffeeShops.razor.cs -------------------------------------------------------------------------------- /Client/Pages/CoffeeShops.razor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Client/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/Error.cshtml -------------------------------------------------------------------------------- /Client/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Client/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/Index.razor -------------------------------------------------------------------------------- /Client/Pages/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/Login.cshtml -------------------------------------------------------------------------------- /Client/Pages/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/Login.cshtml.cs -------------------------------------------------------------------------------- /Client/Pages/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/Logout.cshtml -------------------------------------------------------------------------------- /Client/Pages/Logout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/Logout.cshtml.cs -------------------------------------------------------------------------------- /Client/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/_Host.cshtml -------------------------------------------------------------------------------- /Client/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Program.cs -------------------------------------------------------------------------------- /Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /Client/Services/ITokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Services/ITokenService.cs -------------------------------------------------------------------------------- /Client/Services/IdentityServerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Services/IdentityServerSettings.cs -------------------------------------------------------------------------------- /Client/Services/TokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Services/TokenService.cs -------------------------------------------------------------------------------- /Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Client/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /Client/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Client/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /Client/Shared/RedirectToLogin.razor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Client/Shared/RedirectToLogin.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Shared/RedirectToLogin.razor.cs -------------------------------------------------------------------------------- /Client/Shared/RedirectToLogin.razor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Client/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/_Imports.razor -------------------------------------------------------------------------------- /Client/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/appsettings.Development.json -------------------------------------------------------------------------------- /Client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/appsettings.json -------------------------------------------------------------------------------- /Client/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /Client/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /Client/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /Client/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /Client/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /Client/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/css/site.css -------------------------------------------------------------------------------- /Client/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Client/wwwroot/favicon.ico -------------------------------------------------------------------------------- /CoffeeShopper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/CoffeeShopper.sln -------------------------------------------------------------------------------- /DataAccess/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/DataAccess/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /DataAccess/Entities/CoffeeShop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/DataAccess/Entities/CoffeeShop.cs -------------------------------------------------------------------------------- /DataAccess/Migrations/20220104074353_InitialAppDbContextMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/DataAccess/Migrations/20220104074353_InitialAppDbContextMigration.Designer.cs -------------------------------------------------------------------------------- /DataAccess/Migrations/20220104074353_InitialAppDbContextMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/DataAccess/Migrations/20220104074353_InitialAppDbContextMigration.cs -------------------------------------------------------------------------------- /DataAccess/Migrations/20220104081850_AddCoffeeShops.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/DataAccess/Migrations/20220104081850_AddCoffeeShops.Designer.cs -------------------------------------------------------------------------------- /DataAccess/Migrations/20220104081850_AddCoffeeShops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/DataAccess/Migrations/20220104081850_AddCoffeeShops.cs -------------------------------------------------------------------------------- /DataAccess/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/DataAccess/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/README.md -------------------------------------------------------------------------------- /Server/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Config.cs -------------------------------------------------------------------------------- /Server/Data/AspNetIdentityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Data/AspNetIdentityDbContext.cs -------------------------------------------------------------------------------- /Server/Migrations/20220105064338_InitialIdentityServerMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Migrations/20220105064338_InitialIdentityServerMigration.Designer.cs -------------------------------------------------------------------------------- /Server/Migrations/20220105064338_InitialIdentityServerMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Migrations/20220105064338_InitialIdentityServerMigration.cs -------------------------------------------------------------------------------- /Server/Migrations/AspNetIdentityDb/20220105071113_InitialAspNetIdentityMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Migrations/AspNetIdentityDb/20220105071113_InitialAspNetIdentityMigration.Designer.cs -------------------------------------------------------------------------------- /Server/Migrations/AspNetIdentityDb/20220105071113_InitialAspNetIdentityMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Migrations/AspNetIdentityDb/20220105071113_InitialAspNetIdentityMigration.cs -------------------------------------------------------------------------------- /Server/Migrations/AspNetIdentityDb/AspNetIdentityDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Migrations/AspNetIdentityDb/AspNetIdentityDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Server/Migrations/ConfigurationDb/20220105064353_InitialIdentityServerMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Migrations/ConfigurationDb/20220105064353_InitialIdentityServerMigration.Designer.cs -------------------------------------------------------------------------------- /Server/Migrations/ConfigurationDb/20220105064353_InitialIdentityServerMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Migrations/ConfigurationDb/20220105064353_InitialIdentityServerMigration.cs -------------------------------------------------------------------------------- /Server/Migrations/ConfigurationDb/ConfigurationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Migrations/ConfigurationDb/ConfigurationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Server/Migrations/PersistedGrantDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Migrations/PersistedGrantDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Program.cs -------------------------------------------------------------------------------- /Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /Server/Quickstart/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Account/AccountController.cs -------------------------------------------------------------------------------- /Server/Quickstart/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Account/AccountOptions.cs -------------------------------------------------------------------------------- /Server/Quickstart/Account/ExternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Account/ExternalController.cs -------------------------------------------------------------------------------- /Server/Quickstart/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /Server/Quickstart/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Account/RedirectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Account/RedirectViewModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Consent/ConsentController.cs -------------------------------------------------------------------------------- /Server/Quickstart/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /Server/Quickstart/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /Server/Quickstart/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Device/DeviceAuthorizationInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Device/DeviceAuthorizationInputModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Device/DeviceAuthorizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Device/DeviceAuthorizationViewModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Device/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Device/DeviceController.cs -------------------------------------------------------------------------------- /Server/Quickstart/Diagnostics/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Diagnostics/DiagnosticsController.cs -------------------------------------------------------------------------------- /Server/Quickstart/Diagnostics/DiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Diagnostics/DiagnosticsViewModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Extensions.cs -------------------------------------------------------------------------------- /Server/Quickstart/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Grants/GrantsController.cs -------------------------------------------------------------------------------- /Server/Quickstart/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /Server/Quickstart/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/Home/HomeController.cs -------------------------------------------------------------------------------- /Server/Quickstart/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /Server/Quickstart/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Quickstart/TestUsers.cs -------------------------------------------------------------------------------- /Server/SeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/SeedData.cs -------------------------------------------------------------------------------- /Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Server.csproj -------------------------------------------------------------------------------- /Server/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /Server/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /Server/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Server/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /Server/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /Server/Views/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Device/Success.cshtml -------------------------------------------------------------------------------- /Server/Views/Device/UserCodeCapture.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Device/UserCodeCapture.cshtml -------------------------------------------------------------------------------- /Server/Views/Device/UserCodeConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Device/UserCodeConfirmation.cshtml -------------------------------------------------------------------------------- /Server/Views/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /Server/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /Server/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Server/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Server/Views/Shared/Redirect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Shared/Redirect.cshtml -------------------------------------------------------------------------------- /Server/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Server/Views/Shared/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Shared/_Nav.cshtml -------------------------------------------------------------------------------- /Server/Views/Shared/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Shared/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /Server/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /Server/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Server/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/appsettings.Development.json -------------------------------------------------------------------------------- /Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/appsettings.json -------------------------------------------------------------------------------- /Server/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/tempkey.jwk -------------------------------------------------------------------------------- /Server/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/css/site.css -------------------------------------------------------------------------------- /Server/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Server/wwwroot/css/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/css/site.scss -------------------------------------------------------------------------------- /Server/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Server/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/icon.jpg -------------------------------------------------------------------------------- /Server/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/icon.png -------------------------------------------------------------------------------- /Server/wwwroot/js/signin-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/js/signin-redirect.js -------------------------------------------------------------------------------- /Server/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/README.md -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_custom-forms.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_input-group.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_background-variant.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_badge.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_float.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_size.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_table-row.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_text-hide.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/mixins/_visibility.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_align.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_background.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_borders.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_clearfix.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_display.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_embed.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_flex.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_float.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_overflow.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_position.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_shadows.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_sizing.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_spacing.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_stretched-link.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_text.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/utilities/_visibility.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /Server/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Server/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /Server/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Server/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Server/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Server/wwwroot/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /Server/wwwroot/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /Server/wwwroot/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithiulian/CoffeeShopper-IS4/HEAD/Server/wwwroot/lib/jquery/dist/jquery.slim.min.map --------------------------------------------------------------------------------