This commit is contained in:
hyunho 2020-12-21 02:21:34 +00:00
parent 48a35843c6
commit 26b14e9b3f
4 changed files with 46 additions and 0 deletions

View File

@ -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();
}
}
}

View File

@ -686,6 +686,8 @@
<Content Include="Views\Account\GoogleCallback.cshtml" />
<Content Include="Views\Account\SNSLinkCallback.cshtml" />
<Content Include="Views\Shared\Partial\MobileChk.cshtml" />
<Content Include="Views\Home\PrivacyPolicy.cshtml" />
<Content Include="Views\Home\UsePolicy.cshtml" />
</ItemGroup>
<ItemGroup>
<Folder Include="App_Data\" />

View File

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

View File

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