diff --git a/Areas/MMS/Controllers/MarineController.cs b/Areas/MMS/Controllers/MarineController.cs new file mode 100644 index 0000000..1f15d13 --- /dev/null +++ b/Areas/MMS/Controllers/MarineController.cs @@ -0,0 +1,19 @@ +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using PSTW_CentralSystem.Areas.MMS; + +namespace PSTW_CentralSystem.Areas.MMS.Controllers +{ + public class MarineController : Controller + { + public IActionResult Index() + { + return View(); // This will look for Index.cshtml in Areas/MMS/Views/Marine + } + public IActionResult TarBallForm() + { + return View(); + } + } +} diff --git a/Areas/MMS/Views/Marine/Index.cshtml b/Areas/MMS/Views/Marine/Index.cshtml new file mode 100644 index 0000000..efc300f --- /dev/null +++ b/Areas/MMS/Views/Marine/Index.cshtml @@ -0,0 +1,6 @@ +@{ + ViewData["Title"] = "MMS Dashboard"; +} + +
This is where you’ll add content for MMS later.
\ No newline at end of file diff --git a/Areas/MMS/Views/Marine/TarBallForm.cshtml b/Areas/MMS/Views/Marine/TarBallForm.cshtml new file mode 100644 index 0000000..9ddf96d --- /dev/null +++ b/Areas/MMS/Views/Marine/TarBallForm.cshtml @@ -0,0 +1,5 @@ +@{ + ViewData["Title"] = "Tar Ball Sampling Form"; + Layout = "~/Views/Shared/_Layout.cshtml"; +} + diff --git a/PSTW_CentralSystem.csproj b/PSTW_CentralSystem.csproj index 82ef3fe..29c6e4b 100644 --- a/PSTW_CentralSystem.csproj +++ b/PSTW_CentralSystem.csproj @@ -28,6 +28,7 @@