As per screenshot I am trying to remove 'Email Address' the first time that it appears, not the one within the text box, the placeholder. I have tried to remove DisplayName, or using localization, but everytime both are removed and not only one. Is this something achievable?
B2C: is there a way to avoid displaying Email Address twice?
97 Views Asked by myself At
1
There are 1 best solutions below
Related Questions in USER-INTERFACE
- OS-wide text autocomplete service with popup
- Bootstrap 5 tooltips not working in Laravel 9.x application
- GUI window is not appearing
- Responsive gui customtkinter
- Unwanted text on created icon
- Custom styled "Add to cart" button in WooCommerce product archive pages
- Page behavior in flet works when used directly in `main`, but not in a UserControl?
- How could I reuse the CTk tabviews in python GUI app?
- mouse coordinates in image go below 0 and above width
- Use the same button in different interfaces (JAVA)
- Distributing a GTK4 Windows application
- How to design the file operation interface involving status and transactions?
- Creating a GUI application for creating graphs
- How point to other link after login
- How to align widget to another widget in Flutter
Related Questions in AZURE-AD-B2C-CUSTOM-POLICY
- B2C Login is showing me an error page after entering credentials. When clicked on Sign in button, it's logging me in without asking for creds
- Azure B2C MFA custom policy flow 'try another way'
- I want to created a Azure Policy User and or device base to block certain websites
- Azure B2C cannot use Okta as IdP via OIDC - 'Signature validation failed'
- Need to pass custom claims to B2C Custom Policy from a React Application
- How to prevent Login in AD B2C based on an extension claim type using User Flows
- Multiple policys sharing same key
- "An invalid OAuth response was received" from azure adb2c custom policy oauth2
- Is it possible to embed an iframe within a B2C custom website?
- How to auto redirect to Auth0 IDP from Azure AD B2C custom polcieis based on certain condition
- Unable to get custom user properties (user_id) from Auth0 in Azure AD B2C claims
- Azure AD B2C - Multi Tenant Applicatication using custom Flows
- stuck in the Bearer error="invalid_token", error_description="The signature key was not found"
- How to Pass User Input Values from One Technical Profile to Another in Azure AD B2C Custom Policy?
- Can I send emails directly from Azure AD B2C policies or do I need to utilize an external service?
Related Questions in DISPLAYNAME-ATTRIBUTE
- How can I get user history Display Names from Stack Exchange Data Explorer (SEDE)?
- Get DisplayName of property c#
- How do I get the display name of a hyperlink that comes from SharePoint in Power Apps?
- how to use displayname in xml file
- Localization of DataAnnotations for data validation
- B2C: is there a way to avoid displaying Email Address twice?
- Using Test displayname with DynamicDataDisplayName in MSTest
- How to import the same component multiple times in order to set different displayNames?
- .Net Core how to show display name instead of Email address?
- C#, Display Name with UserPrincipal wont work
- Displaying enum Display Name when iterating over enum values in Razor page (in ASP.NET Core)
- Why my android app name is displaying this.. androidx.multidex.....? Please see the image
- Jenkins LDAP - root DN & Display Name LDAP attribute
- Python OPCUA DisplayNames not showing
- Flutter Firebase: How do I only record the first name of a display name in Firestore?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

Yes, you can customize the Sign-In page elements using JavaScript/CSS. B2C injects the html inside the predefined div with
idset toapi(<div id="api>) as described here. You will need to check the structure of the html elements in the developer tools and then select the element using JavaScript to manipulate the DOM.To hide the email field you can use CSS:
If you wanted to hide all of the label fields you could use this:
Another option is to use jQuery and select the elements like in this example where the user selects the Email Address label and removes it, and also replaces the "Sign in with your email address" text:
Additional guides and examples:
Customize the user interface with HTML templates in Azure Active Directory B2C
Access B2C sign in elements
How to remove and/or modify the elements that are loaded into custom sign in pages in Azure AD B2C?