diff --git a/EmployeePaycheck/Pages/Error.cshtml b/EmployeePaycheck/Pages/Error.cshtml
index 6f92b95..3d6522c 100644
--- a/EmployeePaycheck/Pages/Error.cshtml
+++ b/EmployeePaycheck/Pages/Error.cshtml
@@ -1,7 +1,7 @@
@page
@model ErrorModel
@{
- ViewData["Title"] = "Error";
+ ViewData["Title"] = "Employee Paycheck Error";
}
Error.
diff --git a/EmployeePaycheck/Pages/Index.cshtml b/EmployeePaycheck/Pages/Index.cshtml
index afb6da8..0a4d052 100644
--- a/EmployeePaycheck/Pages/Index.cshtml
+++ b/EmployeePaycheck/Pages/Index.cshtml
@@ -1,7 +1,7 @@
@page
@model IndexModel
@{
- ViewData["Title"] = "Paycheck viewer";
+ ViewData["Title"] = "Employee Paycheck";
}
diff --git a/EmployeePaycheck/Pages/Paycheck/PaycheckDetailsS3.cshtml b/EmployeePaycheck/Pages/Paycheck/PaycheckDetailsS3.cshtml
index 941e04c..778c523 100644
--- a/EmployeePaycheck/Pages/Paycheck/PaycheckDetailsS3.cshtml
+++ b/EmployeePaycheck/Pages/Paycheck/PaycheckDetailsS3.cshtml
@@ -2,6 +2,7 @@
@using EmployeePaycheck.Pages.Shared
@model EmployeePaycheck.Pages.Paycheck.PaycheckDetailsS3Model
@{
+ ViewData["Title"] = "Employee Paycheck Data";
var nonce = HttpContext.GetNonce();
await Html.RenderPartialAsync("_PartialProcessNavigation", new PartialProcessNavigationModel(3));
}
diff --git a/EmployeePaycheck/Pages/Paycheck/PaycheckEnterIdS1.cshtml b/EmployeePaycheck/Pages/Paycheck/PaycheckEnterIdS1.cshtml
index 35f03bb..977aa5c 100644
--- a/EmployeePaycheck/Pages/Paycheck/PaycheckEnterIdS1.cshtml
+++ b/EmployeePaycheck/Pages/Paycheck/PaycheckEnterIdS1.cshtml
@@ -1,8 +1,8 @@
@page
@using EmployeePaycheck.Pages.Shared
@model EmployeePaycheck.Pages.Paycheck.PaycheckEnterIdS1Model
-
@{
+ ViewData["Title"] = "Employee Paycheck - Enter ID";
var nonce = HttpContext.GetNonce();
await Html.RenderPartialAsync("_PartialProcessNavigation", new PartialProcessNavigationModel(1));
}
diff --git a/EmployeePaycheck/Pages/Paycheck/PaycheckVerifyEmployeeS2.cshtml b/EmployeePaycheck/Pages/Paycheck/PaycheckVerifyEmployeeS2.cshtml
index f74c5d8..5e942ec 100644
--- a/EmployeePaycheck/Pages/Paycheck/PaycheckVerifyEmployeeS2.cshtml
+++ b/EmployeePaycheck/Pages/Paycheck/PaycheckVerifyEmployeeS2.cshtml
@@ -2,6 +2,7 @@
@using EmployeePaycheck.Pages.Shared
@model EmployeePaycheck.Pages.Paycheck.PaycheckVerifyEmployeeS2Model
@{
+ ViewData["Title"] = "Employee Paycheck - Verify Employee";
var nonce = HttpContext.GetNonce();
await Html.RenderPartialAsync("_PartialProcessNavigation", new PartialProcessNavigationModel(2));
}
diff --git a/EmployeePaycheck/Pages/Shared/_Layout.cshtml b/EmployeePaycheck/Pages/Shared/_Layout.cshtml
index 04eb975..662057d 100644
--- a/EmployeePaycheck/Pages/Shared/_Layout.cshtml
+++ b/EmployeePaycheck/Pages/Shared/_Layout.cshtml
@@ -6,7 +6,7 @@
-
@ViewData["Title"] - Employee Paycheck
+ @ViewData["Title"]