fix: fix for invalid path to unauthenticated layout in the register view model.

This commit is contained in:
mekael
2025-11-17 20:04:41 -06:00
parent 534c5104cd
commit 4e96372a54

View File

@@ -2,7 +2,7 @@
@model RegisterModel
@{
ViewData["Title"] = "Register";
Layout = "/Views/Shared/_UnauthenticatedLayout.cshtml";
Layout = "/Pages/Shared/_UnauthenticatedLayout.cshtml";
}