From af232d14bfe1b6dce368e5fa03abe268dd8f947b Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Mon, 2 Aug 2021 13:36:13 -0400 Subject: [PATCH] Add Settings page --- Pages/Settings.cshtml | 5 +++++ Pages/Settings.cshtml.cs | 24 ++++++++++++++++++++++++ Pages/Shared/_Layout.cshtml | 3 +++ 3 files changed, 32 insertions(+) create mode 100644 Pages/Settings.cshtml create mode 100644 Pages/Settings.cshtml.cs diff --git a/Pages/Settings.cshtml b/Pages/Settings.cshtml new file mode 100644 index 0000000..6ce556b --- /dev/null +++ b/Pages/Settings.cshtml @@ -0,0 +1,5 @@ +@page +@model SettingsModel +@{ + ViewData["Title"] = "Settings"; +} \ No newline at end of file diff --git a/Pages/Settings.cshtml.cs b/Pages/Settings.cshtml.cs new file mode 100644 index 0000000..e0277dd --- /dev/null +++ b/Pages/Settings.cshtml.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; +using Microsoft.Extensions.Logging; + +namespace StateJobsNYSubmit.Pages +{ + public class SettingsModel : PageModel + { + private readonly ILogger _logger; + + public SettingsModel(ILogger logger) + { + _logger = logger; + } + + public void OnGet() + { + } + } +} diff --git a/Pages/Shared/_Layout.cshtml b/Pages/Shared/_Layout.cshtml index 39eb090..5400a30 100644 --- a/Pages/Shared/_Layout.cshtml +++ b/Pages/Shared/_Layout.cshtml @@ -24,6 +24,9 @@ +