diff --git a/SupportManager.Web/Pages/Status/Index.cshtml b/SupportManager.Web/Pages/Status/Index.cshtml new file mode 100644 index 0000000..6fe503d --- /dev/null +++ b/SupportManager.Web/Pages/Status/Index.cshtml @@ -0,0 +1,22 @@ +@page +@model SupportManager.Web.Pages.Status.IndexModel +@{ + ViewBag.Title = "Status"; +} + +
+
+
+
+ Teams +
+
+
+
+ No team data available. +
+
+
+
+
+
diff --git a/SupportManager.Web/Pages/Status/Index.cshtml.cs b/SupportManager.Web/Pages/Status/Index.cshtml.cs new file mode 100644 index 0000000..c4f0c47 --- /dev/null +++ b/SupportManager.Web/Pages/Status/Index.cshtml.cs @@ -0,0 +1,9 @@ +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace SupportManager.Web.Pages.Status +{ + public class IndexModel : PageModel + { + + } +}