mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
17 lines
504 B
C#
17 lines
504 B
C#
using System;
|
|
|
|
namespace Teknik.IdentityServer.Options
|
|
{
|
|
public class AccountOptions
|
|
{
|
|
public static bool AllowLocalLogin = true;
|
|
public static bool AllowRememberLogin = true;
|
|
public static TimeSpan RememberMeLoginDuration = TimeSpan.FromDays(30);
|
|
|
|
public static bool ShowLogoutPrompt = true;
|
|
public static bool AutomaticRedirectAfterSignOut = true;
|
|
|
|
public static string InvalidCredentialsErrorMessage = "Invalid username or password";
|
|
}
|
|
}
|