添加项目文件。
This commit is contained in:
30
TechHelper.Client/Pages/Manage/PersonalData.razor
Normal file
30
TechHelper.Client/Pages/Manage/PersonalData.razor
Normal file
@@ -0,0 +1,30 @@
|
||||
@page "/Account/Manage/PersonalData"
|
||||
|
||||
|
||||
<PageTitle>Personal Data</PageTitle>
|
||||
|
||||
<h3>Personal Data</h3>
|
||||
|
||||
<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 action="Account/Manage/DownloadPersonalData" method="post">
|
||||
<AntiforgeryToken />
|
||||
<button class="btn btn-primary" type="submit">Download</button>
|
||||
</form>
|
||||
<p>
|
||||
<a href="Account/Manage/DeletePersonalData" class="btn btn-danger">Delete</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user