You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Aguacongas.TheIdServer.Duende/README.md
+18
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,24 @@ And the favicon is *wwwroot/favicon.ico*.
130
130
131
131
By replacing those files you can redefined the site style by yours.
132
132
133
+
### Configure account options
134
+
135
+
The section *AccountOptions* is bound to [`AccountOptions`](../Aguacongas.TheIdServer.Shared/Quickstart/Account/AccountOptions.cs).
136
+
137
+
```json
138
+
"AccountOptions": {
139
+
"AllowLocalLogin": true,
140
+
"AllowRememberLogin": true,
141
+
"RememberMeLoginDuration": "30.00:00:00",
142
+
"ShowLogoutPrompt": true,
143
+
"AutomaticRedirectAfterSignOut": false,
144
+
"InvalidCredentialsErrorMessage": "Invalid username or password",
145
+
"ShowForgotPassworLink": true,
146
+
"ShowRegisterLink": true,
147
+
"ShowResendEmailConfirmationLink": true
148
+
}
149
+
```
150
+
133
151
## Configure ASP.Net Core Identity options
134
152
135
153
The section **IdentityOptions** is binded to the class [`Microsoft.AspNetCore.Identity.IdentityOptions`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.identity.identityoptions).
0 commit comments