From 64f13c1986c2980eab13410e2a5e9c472a9a9977 Mon Sep 17 00:00:00 2001 From: jojo aquino Date: Sun, 27 Apr 2025 23:16:30 +0100 Subject: [PATCH] about page --- EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml | 8 ++++++++ EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml.cs | 12 ++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml create mode 100644 EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml.cs diff --git a/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml b/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml new file mode 100644 index 0000000..fe1a882 --- /dev/null +++ b/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml @@ -0,0 +1,8 @@ +@page +@model EnotaryoPH.Web.Pages.AboutModel +@{ +} + +
+

This website is brought to you with ❤️ by Mang Jose.

+
diff --git a/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml.cs b/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml.cs new file mode 100644 index 0000000..ba2f75b --- /dev/null +++ b/EnotaryoPH/EnotaryoPH.Web/Pages/About.cshtml.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace EnotaryoPH.Web.Pages +{ + public class AboutModel : PageModel + { + public void OnGet() + { + } + } +}