diff --git a/Pages/Login.cshtml b/Pages/Login.cshtml index d40f6b8..8f5749d 100644 --- a/Pages/Login.cshtml +++ b/Pages/Login.cshtml @@ -1,5 +1,8 @@ @page @model JustShortIt.Pages.LoginModel +@{ + ViewData["Title"] = "Login"; +}
diff --git a/Pages/Logout.cshtml b/Pages/Logout.cshtml index 802cf86..262df8a 100644 --- a/Pages/Logout.cshtml +++ b/Pages/Logout.cshtml @@ -1,5 +1,8 @@ @page @model JustShortIt.Pages.LogoutModel +@{ + ViewData["Title"] = "Logout"; +}

How did you get here?

diff --git a/Pages/Urls.cshtml b/Pages/Urls.cshtml index 61a3a55..357151a 100644 --- a/Pages/Urls.cshtml +++ b/Pages/Urls.cshtml @@ -1,7 +1,9 @@ @page @using System.Globalization @model JustShortIt.Pages.UrlsModel - +@{ + ViewData["Title"] = "Urls"; +}
@if (!string.IsNullOrEmpty(Model.Message)) {