2024-05-29 14:53:23 +04:00
|
|
|
@model UserPrivacyModel
|
|
|
|
@{
|
2024-05-29 14:23:16 +04:00
|
|
|
ViewBag.SelectedSiteMenuItem = SiteMenuItems.Privacy;
|
|
|
|
}
|
|
|
|
<h4>Личный кабинет</h4>
|
2024-05-29 14:53:23 +04:00
|
|
|
@foreach (var item in Model.Errors)
|
|
|
|
{
|
|
|
|
<div class="alert alert-danger" role="alert">
|
|
|
|
@item
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
<form method="post">
|
|
|
|
<input hidden readonly asp-for="Id"/>
|
|
|
|
<div class="mb-3">
|
|
|
|
<label asp-for="FIO"></label>
|
|
|
|
<input required asp-for="FIO" />
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<label asp-for="Email"></label>
|
|
|
|
<input required asp-for="Email" />
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<label asp-for="Role"></label>
|
|
|
|
<input readonly asp-for="Role" />
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<label asp-for="Password"></label>
|
|
|
|
<input type="password" asp-for="Password" />
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
|
|
<label asp-for="ConfirmPassword"></label>
|
|
|
|
<input type="password" asp-for="ConfirmPassword" />
|
|
|
|
</div>
|
|
|
|
<button class="btn btn-secondary" type="submit">
|
|
|
|
Применить
|
|
|
|
</button>
|
|
|
|
</form>
|
2024-05-29 14:23:16 +04:00
|
|
|
|