diff --git a/FO/Controllers/HomeController.cs b/FO/Controllers/HomeController.cs index ff6d5f0..8abfbe0 100644 --- a/FO/Controllers/HomeController.cs +++ b/FO/Controllers/HomeController.cs @@ -115,5 +115,15 @@ namespace NP.FO.Controllers { return View(GetPOPUPS.Where(w => w.pno == pno).First()); } + + public ActionResult PrivacyPolicy() + { + return View(); + } + + public ActionResult UsePolicy() + { + return View(); + } } } diff --git a/FO/FO.csproj b/FO/FO.csproj index e948732..9251900 100644 --- a/FO/FO.csproj +++ b/FO/FO.csproj @@ -686,6 +686,8 @@ + + diff --git a/FO/Views/Home/PrivacyPolicy.cshtml b/FO/Views/Home/PrivacyPolicy.cshtml new file mode 100644 index 0000000..5594537 --- /dev/null +++ b/FO/Views/Home/PrivacyPolicy.cshtml @@ -0,0 +1,17 @@ + +@{ + Layout = null; +} + + + + + + + PrivacyPolicy + + +
+
+ + diff --git a/FO/Views/Home/UsePolicy.cshtml b/FO/Views/Home/UsePolicy.cshtml new file mode 100644 index 0000000..48f562b --- /dev/null +++ b/FO/Views/Home/UsePolicy.cshtml @@ -0,0 +1,17 @@ + +@{ + Layout = null; +} + + + + + + + UsePolicy + + +
+
+ +