This is a migrated thread and some comments may be shown as answers.

Removing Manage Password

3 Answers 637 Views
TextBox
This is a migrated thread and some comments may be shown as answers.
Vishnu
Top achievements
Rank 1
Iron
Veteran
Vishnu asked on 23 Mar 2021, 05:06 PM

Hi,

When I entering the password, the password is stored in chrome browser.

So I need to remove the manage password and I have attached the image below

Please see below code

<EditForm Model="@resetPasswordModel" OnValidSubmit="@SaveChanges" autocomplete="off">
            <FluentValidator TValidator="ResetPasswordValidator" />
            <p>@Model.Name</p>
            <EFormRowGroup LabelText="New Password" Id="Password">
                <TelerikTextBox Id="Password" @bind-Value="@resetPasswordModel.Password" Password="true" AutoComplete="off"/>
            </EFormRowGroup>
            <EFormRowGroup LabelText="Confirm Password" Id="ConfirmPassword">
                <TelerikTextBox Id="ConfirmPassword" @bind-Value="@resetPasswordModel.ConfirmPassword" Password="true" AutoComplete="off"/>
            </EFormRowGroup>
            <EValidationSummary />
            <EDialogActions>
                <TelerikButton Icon="save" Primary="true" ButtonType="@ButtonType.Submit">Save</TelerikButton>
                <TelerikButton Icon="cancel" ButtonType="@ButtonType.Button" OnClick="@CancelClick">Cancel</TelerikButton>
            </EDialogActions>
  </EditForm>

Could you please advise on this.

Thanks,

Vishnu Vardhanan.

3 Answers, 1 is accepted

Sort by
0
Vishnu
Top achievements
Rank 1
Iron
Veteran
answered on 24 Mar 2021, 12:26 PM
Hi, Could you please help on this.
0
Svetoslav Dimitrov
Telerik team
answered on 26 Mar 2021, 02:18 PM

Hello Vishnu,

The Manage Password is part of the AutoFill feature of Google Chrome. At the time of writing this, there are lots of reports that this feature cannot be disabled. It does not originate from our components or the Blazor framework itself and is outside of our control. We are aware that it creates some other issues and we created the Chrome autofills the Form and the floating label overlaps the values KB article to provide more information. The same behavior can be reproduced if you use the <input type="password"> HTML element. 

Regards,
Svetoslav Dimitrov
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

0
Lawrence
Top achievements
Rank 2
Iron
answered on 31 Mar 2022, 06:33 PM

This works for me.  Enter "new-password" in the AutoComplete Property.

<TelerikTextBox AutoComplete="new-password"
                                            Password="this.HidePassword"
                                            PlaceHolder="Enter Password..."
                                            @bind-Value="this.Model.Password"/>

Tags
TextBox
Asked by
Vishnu
Top achievements
Rank 1
Iron
Veteran
Answers by
Vishnu
Top achievements
Rank 1
Iron
Veteran
Svetoslav Dimitrov
Telerik team
Lawrence
Top achievements
Rank 2
Iron
Share this question
or