C
C
castetus2021-07-30 12:26:05
HTML
castetus, 2021-07-30 12:26:05

Why isn't my password remembered in Chrome?

For some reason, the password in the form is not remembered if you enter Chrome (everything is ok in firefox).
I've already added everything I could think of:

<form class="login-form"
    @submit.prevent="login">
    <div class="field-group">
      <mcw-textfield
        v-model.trim="username"
        :label="labels.loginInput"
        :helptext="labels.noticeValidation"
        type="text"
        name="login"
        id="login"
        outline
        secondary
        autocomplete="login"
      ></mcw-textfield>
    </div>
    <div class="field-group">
      <mcw-textfield
        v-model.trim="password"
        :label="labels.passwordInput"
        :helptext="labels.noticeValidation"
        type="password"
        name="password"
        outline
        id="password"
        secondary
        autocomplete="password"
      ></mcw-textfield>
    </div>
    <mcw-button
      type="submit"
      raised>
      {{labels.enterButton}}
    </mcw-button>
    <router-link
      to="reset-password"
      class="login-link">
      {{labels.forgetPassword}}
    </router-link>
  </form>

But Chrome does not even offer to remember the password, and there is nothing in the saved passwords.
What could be?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question