From 4e96372a54c23eca8112d3074ae5dce76f5ce443 Mon Sep 17 00:00:00 2001 From: mekael Date: Mon, 17 Nov 2025 20:04:41 -0600 Subject: [PATCH] fix: fix for invalid path to unauthenticated layout in the register view model. --- src/WFClassic.Web/Areas/Identity/Pages/Account/Register.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WFClassic.Web/Areas/Identity/Pages/Account/Register.cshtml b/src/WFClassic.Web/Areas/Identity/Pages/Account/Register.cshtml index 1c0c5b7..cafd334 100644 --- a/src/WFClassic.Web/Areas/Identity/Pages/Account/Register.cshtml +++ b/src/WFClassic.Web/Areas/Identity/Pages/Account/Register.cshtml @@ -2,7 +2,7 @@ @model RegisterModel @{ ViewData["Title"] = "Register"; - Layout = "/Views/Shared/_UnauthenticatedLayout.cshtml"; + Layout = "/Pages/Shared/_UnauthenticatedLayout.cshtml"; }