forked from aspnet/Identity
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds support for a default UI for identity.
* The default UI uses its own Area (Identity). * The default UI requires MVC and StaticFiles to be present on the request processing pipeline. * The default UI requires the user to provide a '_LoginPartial ' partial view in their application in a location that the view engine will find it. This location is tipically /Pages/Shared or /Views/Shared * Current limitations: * The UI is self-contained and non-customizable (outside of things possible with Razor pages). * Customizing the User, role, etc. is not supported at this time.
- Loading branch information
Showing
124 changed files
with
27,561 additions
and
47 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
samples/IdentitySample.DefaultUI/Controllers/HomeController.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Microsoft.AspNetCore.Mvc; | ||
|
||
namespace IdentitySample.DefaultUI.Controllers | ||
{ | ||
public class HomeController : Controller | ||
{ | ||
[HttpGet] | ||
public IActionResult Index() | ||
{ | ||
return View(); | ||
} | ||
} | ||
} |
Oops, something went wrong.