source: PostgreSqlDotnetCore/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml

main
Last change on this file was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 860 bytes
Line 
1@page
2@model PersonalDataModel
3@{
4 ViewData["Title"] = "Personal Data";
5 ViewData["ActivePage"] = ManageNavPages.PersonalData;
6}
7
8<h3>@ViewData["Title"]</h3>
9
10<div class="row">
11 <div class="col-md-6">
12 <p>Your account contains personal data that you have given us. This page allows you to download or delete that data.</p>
13 <p>
14 <strong>Deleting this data will permanently remove your account, and this cannot be recovered.</strong>
15 </p>
16 <form id="download-data" asp-page="DownloadPersonalData" method="post">
17 <button class="btn btn-primary" type="submit">Download</button>
18 </form>
19 <p>
20 <a id="delete" asp-page="DeletePersonalData" class="btn btn-danger">Delete</a>
21 </p>
22 </div>
23</div>
24
25@section Scripts {
26 <partial name="_ValidationScriptsPartial" />
27}
Note: See TracBrowser for help on using the repository browser.