Skip to content

ctorx/Picnic.SimpleAuth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Picnic.SimpleAuth

Picnic.SimpleAuth is a simple authentication extension for Picnic that provides a slim authentication layer for the Picnic ASP.NET Core CMS Extension.

Getting Started

Step 1: Add the Picnic.SimpleAuth.Extensions using directive to your Startup.cs

using Picnic.SimpleAuth.Extensions;

Step 2: Add UseSimpleAuth() to your existing AddPicnic() call

public void ConfigureServices(IServiceCollection services)
{            
    //...Existing configuration

    services.AddMvc();
    
    // Add Picnic and Specify Json Store
    services.AddPicnic().UseJsonStore().UseSimpleAuth();
}

Step 3: Launch the Picnic Management Interface

Launch the picnic management interface in the browser and you will be prompted with a login dialog. The default username is admin and the default password is password. Don't forget to change it. A user menu item will be added to the picnic management interface allowing you to change your password or logout.

Where can I get it?

Install from Nuget

Install-Package Picnic.SimpleAuth

License, etc.

Picnic.SimpleAuth is copyright © 2017 Matthew Marksbury and other contributors under the MIT license.

Roadmap

Coming soon.

About

A simple authentication extension for Picnic, the .NET Core CMS Extension for ASP.NET MVC Web Applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages