Replies: 5 comments 5 replies
-
The default authentication method is defined by the DefaultAcrValue property of the IdServerHostOptions.
Currently, it is not possible to add a "retrieve password" link to the UI. In the meantime, you can update the UI and add the link into the view Areas\email\Views\Authenticate.cshtml. |
Beta Was this translation helpful? Give feedback.
-
@simpleidserver Thanks for that. I was looking at the code in more detail and it does seem like I can have a custom flow. What I was trying to achieve is Email+Pwd+Code but it seems that this might need to be custom logic. Is there options that can be set to achieve this or is it a case of creating new Controllers/Views and a custom ACRS endpoint? You already have Email/Login+Password/Email+Code but nothing that combines all 3 Email+Pwd+Code. |
Beta Was this translation helpful? Give feedback.
-
@Alik2015: Why do you need a new authentication method when you are already using the email or sms authentication method? A One-Time Password/Verification Code is sent via SMS or email. Can you please provide more details about the authentication method you want to implement? For each authentication method, there is a separate NuGet Package. If you want to implement a custom one, you can refer to their implementation. For example: https://github.com/simpleidserver/SimpleIdServer/tree/master/src/IdServer/SimpleIdServer.IdServer.Sms |
Beta Was this translation helpful? Give feedback.
-
For some reason in pwd email I don't see password only email and code fields. On 6 Dec 2023 15:01, SimpleIdServer ***@***.***> wrote:
The workflow used by Google or Microsoft is similar to the authentication workflows pwd+email or pwd+sms.
Both workflows consist of the following steps:
On the first screen, the user must submit their credentials (login and password).On the second screen, the user enters their mobile phone number or email and clicks on the Send confirmation code button.A TOTP (Time-Based One-Time Password) code is sent to the phone or email.The user enters this code to complete the authentication.
A TOTP code can also be generated by a mobile application, such as Microsoft Authenticator. When the user is authenticated to the IdServer, they can scan the QR Code.
image.png (view on web)
Additionally, we can implement another authentication method, named code, where the user can enter the TOTP code generated by the mobile application.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Hi @Alik2015, The development of the ticket #645 is complete. It is now possible to reset the user's password. The workflow consists of the following steps, similar to workflows implemented by other Identity Providers.
All the options of this module can be updated on the administration website. Navigate to the You can edit the following properties :
|
Beta Was this translation helpful? Give feedback.
-
What is the suggest way (maybe changing template?) to change the default auth type so that I can have Email/Password and then ask the 2FA if enabled like verification code and also have a Forgot Password link?
I am guessing miight be a custom implementation of the template but was wondering if it is configurable from the UI.
Also is Forgot Password implemented as a method so that I can use it on the login page?
Beta Was this translation helpful? Give feedback.
All reactions