main
Last change
on this file was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 4 months ago |
init commit Elena
|
-
Property mode
set to
100644
|
File size:
944 bytes
|
Line | |
---|
1 | // Licensed to the .NET Foundation under one or more agreements.
|
---|
2 | // The .NET Foundation licenses this file to you under the MIT license.
|
---|
3 | #nullable disable
|
---|
4 |
|
---|
5 | using Microsoft.AspNetCore.Authorization;
|
---|
6 | using Microsoft.AspNetCore.Mvc.RazorPages;
|
---|
7 |
|
---|
8 | namespace PostgreSqlDotnetCore.Areas.Identity.Pages.Account
|
---|
9 | {
|
---|
10 | /// <summary>
|
---|
11 | /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
|
---|
12 | /// directly from your code. This API may change or be removed in future releases.
|
---|
13 | /// </summary>
|
---|
14 | [AllowAnonymous]
|
---|
15 | public class ForgotPasswordConfirmation : PageModel
|
---|
16 | {
|
---|
17 | /// <summary>
|
---|
18 | /// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
|
---|
19 | /// directly from your code. This API may change or be removed in future releases.
|
---|
20 | /// </summary>
|
---|
21 | public void OnGet()
|
---|
22 | {
|
---|
23 | }
|
---|
24 | }
|
---|
25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.