Files
marechai/Marechai/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.cs

11 lines
265 B
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Marechai.Areas.Identity.Pages.Account
{
[AllowAnonymous]
public class ResetPasswordConfirmationModel : PageModel
{
public void OnGet() { }
}
}