You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
879 B
27 lines
879 B
@page
|
|
@model PersonalDataModel
|
|
@{
|
|
ViewData["Title"] = "Personal Data";
|
|
ViewData["ActivePage"] = ManageNavPages.PersonalData;
|
|
}
|
|
|
|
<h4>@ViewData["Title"]</h4>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<p>Your account contains personal data that you have given us. This page allows you to download or delete that data.</p>
|
|
<p>
|
|
<strong>Deleting this data will permanently remove your account, and this cannot be recovered.</strong>
|
|
</p>
|
|
<form id="download-data" asp-page="DownloadPersonalData" method="post" class="form-group">
|
|
<button class="btn btn-primary" type="submit">Download</button>
|
|
</form>
|
|
<p>
|
|
<a id="delete" asp-page="DeletePersonalData" class="btn btn-primary">Delete</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
} |