28 lines
1.3 KiB
Plaintext
28 lines
1.3 KiB
Plaintext
@page
|
|
@model MTG_CollectionVerwaltung.Areas.Identity.Pages.Account.Admin.ModifyUserModel
|
|
@{
|
|
}
|
|
<h2>@Model.userToModyfy?.UserName Bearbeiten</h2>
|
|
<partial name="_StatusMessage" for="StatusMessage" />
|
|
<button type="button" data-bs-toggle="modal" data-bs-target="#resetPasswordModal" class="btn btn-secondary">Reset Passwort</button>
|
|
|
|
<div class="modal fade" id="resetPasswordModal" tabindex="-1" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form method="post" asp-page-handler="ResetPassword">
|
|
<div class="modal-header">
|
|
<h1 class="modal-title fs-5">Passwort Zurücksetzen</h1>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>Soll das Passwort für den User wirklich geändert werden?</p>
|
|
<input type="hidden" id="modalUserId" name="UserId" value="@Model.userToModyfy?.Id" />
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Abbrechen</button>
|
|
<button type="submit" class="btn btn-danger">Ändern</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div> |