This commit is contained in:
parent
48a35843c6
commit
26b14e9b3f
|
|
@ -115,5 +115,15 @@ namespace NP.FO.Controllers
|
||||||
{
|
{
|
||||||
return View(GetPOPUPS.Where(w => w.pno == pno).First());
|
return View(GetPOPUPS.Where(w => w.pno == pno).First());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ActionResult PrivacyPolicy()
|
||||||
|
{
|
||||||
|
return View();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ActionResult UsePolicy()
|
||||||
|
{
|
||||||
|
return View();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -686,6 +686,8 @@
|
||||||
<Content Include="Views\Account\GoogleCallback.cshtml" />
|
<Content Include="Views\Account\GoogleCallback.cshtml" />
|
||||||
<Content Include="Views\Account\SNSLinkCallback.cshtml" />
|
<Content Include="Views\Account\SNSLinkCallback.cshtml" />
|
||||||
<Content Include="Views\Shared\Partial\MobileChk.cshtml" />
|
<Content Include="Views\Shared\Partial\MobileChk.cshtml" />
|
||||||
|
<Content Include="Views\Home\PrivacyPolicy.cshtml" />
|
||||||
|
<Content Include="Views\Home\UsePolicy.cshtml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="App_Data\" />
|
<Folder Include="App_Data\" />
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
|
||||||
|
@{
|
||||||
|
Layout = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
<title>PrivacyPolicy</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
|
||||||
|
@{
|
||||||
|
Layout = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
<title>UsePolicy</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue