diff --git a/APIClient/Views/_ViewImports.cshtml b/APIClient/Views/_ViewImports.cshtml
deleted file mode 100644
index ff1ac1e..0000000
--- a/APIClient/Views/_ViewImports.cshtml
+++ /dev/null
@@ -1,3 +0,0 @@
-@using APIClient
-@using APIClient.Models
-@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
diff --git a/APIClient/APIClient.cs b/FlowerShopClientApp/APIClient.cs
similarity index 100%
rename from APIClient/APIClient.cs
rename to FlowerShopClientApp/APIClient.cs
diff --git a/APIClient/Controllers/HomeController.cs b/FlowerShopClientApp/Controllers/HomeController.cs
similarity index 95%
rename from APIClient/Controllers/HomeController.cs
rename to FlowerShopClientApp/Controllers/HomeController.cs
index c45637c..3c0ccb2 100644
--- a/APIClient/Controllers/HomeController.cs
+++ b/FlowerShopClientApp/Controllers/HomeController.cs
@@ -1,10 +1,10 @@
-using APIClient.Models;
+using FlowerShopClientApp.Models;
using FlowerShopContracts.BindingModels;
using FlowerShopContracts.ViewModels;
using Microsoft.AspNetCore.Mvc;
using System.Diagnostics;
-namespace APIClient.Controllers
+namespace FlowerShopClientApp.Controllers
{
public class HomeController : Controller
{
@@ -83,8 +83,7 @@ namespace APIClient.Controllers
{
throw new Exception("Введите логин и пароль");
}
- APIClient.Client =
- APIClient.GetRequest($"api/client/login?login={login}&password={password}");
+ APIClient.Client = APIClient.GetRequest($"api/client/login?login={login}&password={password}");
if (APIClient.Client == null)
{
throw new Exception("Неверный логин/пароль");
diff --git a/APIClient/FlowerShopClientApp.csproj b/FlowerShopClientApp/FlowerShopClientApp.csproj
similarity index 100%
rename from APIClient/FlowerShopClientApp.csproj
rename to FlowerShopClientApp/FlowerShopClientApp.csproj
diff --git a/APIClient/Models/ErrorViewModel.cs b/FlowerShopClientApp/Models/ErrorViewModel.cs
similarity index 81%
rename from APIClient/Models/ErrorViewModel.cs
rename to FlowerShopClientApp/Models/ErrorViewModel.cs
index 84002e1..3df10af 100644
--- a/APIClient/Models/ErrorViewModel.cs
+++ b/FlowerShopClientApp/Models/ErrorViewModel.cs
@@ -1,4 +1,4 @@
-namespace APIClient.Models
+namespace FlowerShopClientApp.Models
{
public class ErrorViewModel
{
diff --git a/APIClient/Program.cs b/FlowerShopClientApp/Program.cs
similarity index 100%
rename from APIClient/Program.cs
rename to FlowerShopClientApp/Program.cs
diff --git a/APIClient/Properties/launchSettings.json b/FlowerShopClientApp/Properties/launchSettings.json
similarity index 100%
rename from APIClient/Properties/launchSettings.json
rename to FlowerShopClientApp/Properties/launchSettings.json
diff --git a/APIClient/Views/Home/Create.cshtml b/FlowerShopClientApp/Views/Home/Create.cshtml
similarity index 100%
rename from APIClient/Views/Home/Create.cshtml
rename to FlowerShopClientApp/Views/Home/Create.cshtml
diff --git a/APIClient/Views/Home/Enter.cshtml b/FlowerShopClientApp/Views/Home/Enter.cshtml
similarity index 100%
rename from APIClient/Views/Home/Enter.cshtml
rename to FlowerShopClientApp/Views/Home/Enter.cshtml
diff --git a/APIClient/Views/Home/Index.cshtml b/FlowerShopClientApp/Views/Home/Index.cshtml
similarity index 100%
rename from APIClient/Views/Home/Index.cshtml
rename to FlowerShopClientApp/Views/Home/Index.cshtml
diff --git a/APIClient/Views/Home/Privacy.cshtml b/FlowerShopClientApp/Views/Home/Privacy.cshtml
similarity index 100%
rename from APIClient/Views/Home/Privacy.cshtml
rename to FlowerShopClientApp/Views/Home/Privacy.cshtml
diff --git a/APIClient/Views/Home/Register.cshtml b/FlowerShopClientApp/Views/Home/Register.cshtml
similarity index 100%
rename from APIClient/Views/Home/Register.cshtml
rename to FlowerShopClientApp/Views/Home/Register.cshtml
diff --git a/APIClient/Views/Shared/Error.cshtml b/FlowerShopClientApp/Views/Shared/Error.cshtml
similarity index 100%
rename from APIClient/Views/Shared/Error.cshtml
rename to FlowerShopClientApp/Views/Shared/Error.cshtml
diff --git a/APIClient/Views/Shared/_Layout.cshtml b/FlowerShopClientApp/Views/Shared/_Layout.cshtml
similarity index 100%
rename from APIClient/Views/Shared/_Layout.cshtml
rename to FlowerShopClientApp/Views/Shared/_Layout.cshtml
diff --git a/APIClient/Views/Shared/_Layout.cshtml.css b/FlowerShopClientApp/Views/Shared/_Layout.cshtml.css
similarity index 100%
rename from APIClient/Views/Shared/_Layout.cshtml.css
rename to FlowerShopClientApp/Views/Shared/_Layout.cshtml.css
diff --git a/APIClient/Views/Shared/_ValidationScriptsPartial.cshtml b/FlowerShopClientApp/Views/Shared/_ValidationScriptsPartial.cshtml
similarity index 100%
rename from APIClient/Views/Shared/_ValidationScriptsPartial.cshtml
rename to FlowerShopClientApp/Views/Shared/_ValidationScriptsPartial.cshtml
diff --git a/FlowerShopClientApp/Views/_ViewImports.cshtml b/FlowerShopClientApp/Views/_ViewImports.cshtml
new file mode 100644
index 0000000..4d60c5c
--- /dev/null
+++ b/FlowerShopClientApp/Views/_ViewImports.cshtml
@@ -0,0 +1,3 @@
+@using FlowerShopClientApp
+@using FlowerShopClientApp.Models
+@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
diff --git a/APIClient/Views/_ViewStart.cshtml b/FlowerShopClientApp/Views/_ViewStart.cshtml
similarity index 100%
rename from APIClient/Views/_ViewStart.cshtml
rename to FlowerShopClientApp/Views/_ViewStart.cshtml
diff --git a/APIClient/appsettings.Development.json b/FlowerShopClientApp/appsettings.Development.json
similarity index 100%
rename from APIClient/appsettings.Development.json
rename to FlowerShopClientApp/appsettings.Development.json
diff --git a/APIClient/appsettings.json b/FlowerShopClientApp/appsettings.json
similarity index 78%
rename from APIClient/appsettings.json
rename to FlowerShopClientApp/appsettings.json
index 6526e7e..43e471f 100644
--- a/APIClient/appsettings.json
+++ b/FlowerShopClientApp/appsettings.json
@@ -6,6 +6,6 @@
}
},
"AllowedHosts": "*",
- "IPAddress": "http://localhost:7213/"
+ "IPAddress": "http://localhost:5162/"
}
diff --git a/APIClient/wwwroot/css/site.css b/FlowerShopClientApp/wwwroot/css/site.css
similarity index 100%
rename from APIClient/wwwroot/css/site.css
rename to FlowerShopClientApp/wwwroot/css/site.css
diff --git a/APIClient/wwwroot/favicon.ico b/FlowerShopClientApp/wwwroot/favicon.ico
similarity index 100%
rename from APIClient/wwwroot/favicon.ico
rename to FlowerShopClientApp/wwwroot/favicon.ico
diff --git a/APIClient/wwwroot/js/site.js b/FlowerShopClientApp/wwwroot/js/site.js
similarity index 100%
rename from APIClient/wwwroot/js/site.js
rename to FlowerShopClientApp/wwwroot/js/site.js
diff --git a/APIClient/wwwroot/lib/bootstrap/LICENSE b/FlowerShopClientApp/wwwroot/lib/bootstrap/LICENSE
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/LICENSE
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/LICENSE
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js
diff --git a/APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map b/FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map
similarity index 100%
rename from APIClient/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map
rename to FlowerShopClientApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map
diff --git a/APIClient/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt b/FlowerShopClientApp/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt
similarity index 100%
rename from APIClient/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt
rename to FlowerShopClientApp/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt
diff --git a/APIClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js b/FlowerShopClientApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
similarity index 100%
rename from APIClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
rename to FlowerShopClientApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
diff --git a/APIClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js b/FlowerShopClientApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js
similarity index 100%
rename from APIClient/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js
rename to FlowerShopClientApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js
diff --git a/APIClient/wwwroot/lib/jquery-validation/LICENSE.md b/FlowerShopClientApp/wwwroot/lib/jquery-validation/LICENSE.md
similarity index 100%
rename from APIClient/wwwroot/lib/jquery-validation/LICENSE.md
rename to FlowerShopClientApp/wwwroot/lib/jquery-validation/LICENSE.md
diff --git a/APIClient/wwwroot/lib/jquery-validation/dist/additional-methods.js b/FlowerShopClientApp/wwwroot/lib/jquery-validation/dist/additional-methods.js
similarity index 100%
rename from APIClient/wwwroot/lib/jquery-validation/dist/additional-methods.js
rename to FlowerShopClientApp/wwwroot/lib/jquery-validation/dist/additional-methods.js
diff --git a/APIClient/wwwroot/lib/jquery-validation/dist/additional-methods.min.js b/FlowerShopClientApp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js
similarity index 100%
rename from APIClient/wwwroot/lib/jquery-validation/dist/additional-methods.min.js
rename to FlowerShopClientApp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js
diff --git a/APIClient/wwwroot/lib/jquery-validation/dist/jquery.validate.js b/FlowerShopClientApp/wwwroot/lib/jquery-validation/dist/jquery.validate.js
similarity index 100%
rename from APIClient/wwwroot/lib/jquery-validation/dist/jquery.validate.js
rename to FlowerShopClientApp/wwwroot/lib/jquery-validation/dist/jquery.validate.js
diff --git a/APIClient/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js b/FlowerShopClientApp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js
similarity index 100%
rename from APIClient/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js
rename to FlowerShopClientApp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js
diff --git a/APIClient/wwwroot/lib/jquery/LICENSE.txt b/FlowerShopClientApp/wwwroot/lib/jquery/LICENSE.txt
similarity index 100%
rename from APIClient/wwwroot/lib/jquery/LICENSE.txt
rename to FlowerShopClientApp/wwwroot/lib/jquery/LICENSE.txt
diff --git a/APIClient/wwwroot/lib/jquery/dist/jquery.js b/FlowerShopClientApp/wwwroot/lib/jquery/dist/jquery.js
similarity index 100%
rename from APIClient/wwwroot/lib/jquery/dist/jquery.js
rename to FlowerShopClientApp/wwwroot/lib/jquery/dist/jquery.js
diff --git a/APIClient/wwwroot/lib/jquery/dist/jquery.min.js b/FlowerShopClientApp/wwwroot/lib/jquery/dist/jquery.min.js
similarity index 100%
rename from APIClient/wwwroot/lib/jquery/dist/jquery.min.js
rename to FlowerShopClientApp/wwwroot/lib/jquery/dist/jquery.min.js
diff --git a/APIClient/wwwroot/lib/jquery/dist/jquery.min.map b/FlowerShopClientApp/wwwroot/lib/jquery/dist/jquery.min.map
similarity index 100%
rename from APIClient/wwwroot/lib/jquery/dist/jquery.min.map
rename to FlowerShopClientApp/wwwroot/lib/jquery/dist/jquery.min.map
diff --git a/ProjectFlowerShop.sln b/ProjectFlowerShop.sln
index 90523b5..c293e6e 100644
--- a/ProjectFlowerShop.sln
+++ b/ProjectFlowerShop.sln
@@ -19,7 +19,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowerShopDatabaseImplement
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlowerShopRestApi", "FlowerShopRestApi\FlowerShopRestApi.csproj", "{729A747E-7DDA-4D6A-87C3-F83DCC6393F4}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlowerShopClientApp", "APIClient\FlowerShopClientApp.csproj", "{12281047-FD6A-4E88-A150-72EF707B6E10}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlowerShopClientApp", "FlowerShopClientApp\FlowerShopClientApp.csproj", "{12281047-FD6A-4E88-A150-72EF707B6E10}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution