cjbrown822 / IdentityServer4.Quickstart.UI

Starter UI for in-memory IdentityServer4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Quickstart UI for IdentityServer4

This repo contains a sample MVC based UI for login, logout, grant management and consent.

Note that the repo doesn't include solution and project files, but should be copied to your project as described below.

note This branch contains the files to go with the latest release of IdentityServer4. If you are looking for older versions, try this page.

Adding the quickstart UI

This repo contains the controllers, models, views and CSS files needed for the UI. Simply download/clone it and copy the folders into the web project.

Alternatively you can run this powershell script from your web project directory to download them automatically:

iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/IdentityServer/IdentityServer4.Quickstart.UI/master/getmaster.ps1'))

Or using bash one-liner on macOS or Linux:

curl -L https://raw.githubusercontent.com/IdentityServer/IdentityServer4.Quickstart.UI/master/getmaster.sh | bash

Or you can use our templates:

dotnet new -i identityserver4.templates
dotnet new is4ui

Issues

For issues, use the consolidated IdentityServer4 issue tracker.

About

Starter UI for in-memory IdentityServer4

License:Apache License 2.0


Languages

Language:C# 72.3%Language:HTML 22.8%Language:CSS 3.4%Language:PowerShell 0.7%Language:Shell 0.5%Language:JavaScript 0.3%