Suggestions for customising ui? #943
-
|
I am just wondering what suggestions are there for creating a custom UI for example when using email and OTP your sample page does everything in one form. I did see a form Builder which I was trying to play about where however I believe it does not allow me to create separate pages. As an example user types in email clicks send code and auto redirects to the page that asks for the code. Looking at the current cshtml under views/ email I see it is using the form Builder. So what are suggestions to replace the ui? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
|
Hello, The goal of the FormBuilder provided in SimpleIdServer is to allow administrators to edit the look and feel online without redeploying the application, while also enforcing form security (required fields and anti-forgery tokens). If you do not want to use the FormBuilder, you can always edit the .cshtml files directly and add the necessary elements. If you need any help, we can assist you in migrating some pages from the FormBuilder to .cshtml. KR, |
Beta Was this translation helpful? Give feedback.
-
|
If you can provide simple steps using razor would be appreciated.At this time we are putting a prototype together for our startup but I believe we will require some consultancy after launch assuming it is something you do? On 2 Jan 2026 16:56, SimpleIdServer ***@***.***> wrote:
Indeed, there is no custom UI that shows a different page for each step; everything is built using the form builder. However, we can provide some examples.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.

Hello @Alik2015
I have made some changes in the
release700branch to support your scenario and to provide the ability to split email authentication into two different UI steps.To do this, go to the administration website and add a new authentication workflow. Enter the following information and click Add:
Then edit the ACR workflow so that it looks like the following, and click Save:
To test the new authentication workflow, click the Button displayed next to the ACR.
You will then see that the authentication workflow is split into two steps.
In addition, all
authentication windowsh…