oliverbooth.dev/OliverBooth/Pages/Contact/Privacy.cshtml

55 lines
2.4 KiB
Plaintext
Raw Normal View History

2023-08-11 14:51:20 +00:00
@page "/contact/privacy/{which?}"
2023-08-05 19:54:55 +00:00
@model OliverBooth.Pages.Contact.Privacy
@{
ViewData["Title"] = "Contact";
}
<nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a asp-page="Index">Contact</a>
</li>
<li class="breadcrumb-item active" aria-current="page">Privacy Policy Concerns</li>
</ol>
</nav>
2023-08-05 19:54:55 +00:00
<p>
Thank you for getting in touch. I take your privacy very seriously and will do my best to address any concerns you may have.
Please outline your concerns in the form below, and I will get back to you as soon as possible.
</p>
<form method="post" asp-controller="Contact" asp-action="HandlePrivacyPolicy">
2023-08-05 19:54:55 +00:00
<input type="hidden" name="contact-type" value="privacy-policy">
<div class="form-group" style="margin-top: 10px;">
<label for="name">Your Name</label>
<input type="text" class="form-control" id="name" name="name" placeholder="Who are you?">
2023-08-05 19:54:55 +00:00
</div>
<div class="form-group" style="margin-top: 10px;">
<label for="email">Your Email Address</label>
<input type="email" class="form-control" id="email" name="email" placeholder="How can I reach you?">
2023-08-05 19:54:55 +00:00
</div>
<div class="form-group" style="margin-top: 10px;">
<label for="privacy-policy">Privacy Policy</label>
2023-08-05 19:54:55 +00:00
<select name="privacy-policy" class="form-control" id="privacy-policy">
<option value="website" selected="@(Model.Which == "website")">This website's policy</option>
2023-08-05 19:54:55 +00:00
<option value="google-play" selected="@(Model.Which == "google-play")">Google Play policy</option>
<option value="five-oclock-somewhere" selected="@(Model.Which == "five-oclock-somewhere")">It's 5 O'Clock Somewhere policy</option>
2023-08-05 19:54:55 +00:00
</select>
</div>
<div class="form-group" style="margin-top: 10px;">
<label for="subject">Subject</label>
<input type="text" class="form-control" id="subject" name="subject" placeholder="Describe your concerns here in a few words" maxlength="100">
2023-08-05 19:54:55 +00:00
</div>
<div class="form-group" style="margin-top: 10px;">
<label for="message">Description</label>
<textarea class="form-control" id="message" name="message" rows="5" required placeholder="Go into detail about the nature of your concerns."></textarea>
2023-08-05 19:54:55 +00:00
</div>
<button type="submit" class="btn btn-primary" style="margin-top: 10px;">Submit</button>
</form>