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 @@ +