feat: add privacy policy rev 1

This commit is contained in:
Oliver Booth 2023-08-04 00:41:30 +01:00
parent bfa6567224
commit 621276b0d3
Signed by: oliverbooth
GPG Key ID: 725DB725A0D9EE61
4 changed files with 44 additions and 26 deletions

View File

@ -1,8 +0,0 @@
@page
@model PrivacyModel
@{
ViewData["Title"] = "Privacy Policy";
}
<h1>@ViewData["Title"]</h1>
<p>Use this page to detail your site's privacy policy.</p>

View File

@ -1,18 +0,0 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace oliverbooth.dev.Pages;
public class PrivacyModel : PageModel
{
private readonly ILogger<PrivacyModel> _logger;
public PrivacyModel(ILogger<PrivacyModel> logger)
{
_logger = logger;
}
public void OnGet()
{
}
}

View File

@ -0,0 +1,37 @@
@page
@model OliverBooth.Pages.Privacy.Index
@{
ViewData["Title"] = "Privacy Policy";
}
<h1 class="display-4">@ViewData["Title"]</h1>
<p class="lead">Last Updated: 26 May 2023</p>
<p>This Privacy Policy describes how your personal information is collected, used, and shared when you visit or interact with my website <a href="https://oliverbooth.dev/">oliverbooth.dev</a>.</p>
<h2>Introduction</h2>
<p>I am committed to protecting your privacy and ensuring the security of any information you provide to me when using my website. This Privacy Policy outlines my practices regarding the collection, use, and disclosure of information I may gather from users of my website.</p>
<h2>Information I Collect</h2>
<p>When you choose to contact me via the contact form on my website, I collect your name and email address. This information is provided voluntarily by you and is necessary for me to respond to your inquiries and engage in a conversation. I do not collect any additional personally identifiable information about you through the contact form.</p>
<p>I do not use any cookies or similar tracking technologies that can identify individual users.</p>
<p>Please note that my website includes a Disqus integration for commenting on blog posts. Disqus is a third-party service, and their use of cookies and collection of personal information are governed by their own privacy policies. I have no control over the information collected by Disqus, and I encourage you to review their privacy policy to understand how your information may be used by them.</p>
<h2>Use of Information</h2>
<p>The name and email address you provide through the contact form are used solely for the purpose of responding to your inquiries and engaging in relevant conversation. I keep this information confidential and do not disclose, sell, or share it with any third parties unless required by law or with your explicit consent.</p>
<p>I do not use your personal information for marketing purposes or send you any unsolicited communications. Once our conversation is complete and no longer necessary, I will securely delete your personal information unless otherwise required to retain it by applicable laws or regulations.</p>
<h2>Disclosure of Information</h2>
<p>I do not disclose your personal information to any third parties unless required by law or with your explicit consent. I maintain strict confidentiality and take reasonable precautions to protect your personal information from unauthorized access, use, or disclosure.</p>
<p>However, please be aware that my website contains links to third-party websites and services. I am not responsible for the privacy practices or content of these third-party sites. I encourage you to review the privacy policies of those third-party sites before providing any personal information.</p>
<h2>Security</h2>
<p>I prioritize the security of your personal information and take reasonable precautions to protect it. However, please be aware that no method of transmission over the internet or electronic storage is 100% secure, and I cannot guarantee absolute security.</p>
<h2>Changes to this Privacy Policy</h2>
<p>I may update this Privacy Policy from time to time to reflect changes in my practices or for other operational, legal, or regulatory reasons. I encourage you to review this Privacy Policy periodically for any updates. The revised policy will be effective immediately upon posting.</p>
<h2>Contact Me</h2>
<p>If you have any questions or concerns about this Privacy Policy or my privacy practices, please <a asp-page="/contact/privacy" asp-route-which="website">get in touch</a>.</p>
<hr/>
<p>By using my website, you signify your acceptance of this Privacy Policy.</p>

View File

@ -0,0 +1,7 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace OliverBooth.Pages.Privacy;
public class Index : PageModel
{
}