English 中文(简体)
灭 the英填入用户名的密码
原标题:firefox fills in the password into the username field

这一点令人厌恶:如果我提出申请,请火f挽救用户名/密码。 然后,在用户名输入现场的密码中填满并回到标识屏上,从而使之可见!

任何可引起问题的想法? 这里是我表格的html,尽管我检查了10个ill。

<form action="<?php echo WWWROOT ?>login/" autocomplete="on" method="post" name="extranetLoginForm" id="extranetLoginForm" >
 <ul id="formlog">
  <li id="liloginfield">
   <label for="loginfield" id="loginfieldlab"><span class="required">
    <img alt="user-icon" src="<?php echo WWWROOT ?>_img/icons/user.png" />
    Mon nom d utilisateur : <small style="color:#AAA">(prenom.nom)</small></span>
   </label>
   <input id="loginfield" name="loginfield" class="text required ui-corner-all" type="text" tabindex="1" accesskey="l"  />
   <label for="loginfield" class="error" id="error1">
    <img alt="erreur-login" src="<?php echo WWWROOT ?>_img/icons/exclamation.png" />Ce champ est obligatoire, r&eacute;digez comme ceci: prenom.nom</label>
  </li>
  <li id="lipass">
   <label for="password">
    <span class="required"><img alt="lost-pass" src="<?php echo WWWROOT ?>_img/icons/key.png" />mot de passe
    <small class="help_form">(<a id="forgotPasswordLink" href="#">oublié</a> ?)</small></span>
   </label>
   <input name="password" type="password" class="text required ui-corner-all" id="password" minlength="4" maxlength="20" tabindex="2" accesskey="p" />
   <small  class="checker" ></small>
   <input type="hidden" name="errorpass" id="errorpass" value="0"/>
   <label for="password" class="error" id="error2"><img alt="exclamation" src="<?php echo WWWROOT ?>_img/icons/exclamation.png" />Ce champ est obligatoire.</label>
  </li>
  <li>
   <input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90" /><label for="rememberme"> Se souvenir de moi</label></p>
  </li>
  <li class="centeredtext">
    <input type="hidden" name="goto"  id="goto" value="<?php echo WWWROOT.$_SESSION[ AFTER_LOGIN_GOTO ] ?>"/>
    <input type="hidden" name="login_type"  id="loginTypeNormal" value="normal"/>
    <input type="submit" class="ui-state-default button ui-corner-all short_input" value="GO!" id="submitlogin" tabindex="1" accesskey="L" />
   </li>
   <li id="lipassforget">
    <label class="centered info"><a class="dark_link openidLink" href="#" id="openidLink">avec OpenID</a></label>
   </li>
  </ul>
</form>
问题回答

您是否有机会更改了外地名称,即,在用户名/密码被挽救之时,密码被称作标识场吗? https://wiki.mozilla.org 密码管理员用所节省的标识细节储存外地名称,因此可能与此相关。

您是否试图从密码管理员中删除用户名/密码,看看在你试图再次拯救标识细节时是否再次这样做?

默祷或默念一分钟。 它有自己的思想。

如果你用“S”号申请加入你的申请,而你的实地记录是“L”的,你的密码领域是“P”的,那么你会记得这些女方,这样你就可以把价值观放在你身上。 只有当你检查: Options > Security > Remember份密码核对箱。

“entergraph

现在,如果你有一页(或表格,实际上并不确定)的AT LEAST,一个有“L”或“P”相匹配的投稿场,那么“Ambertword”经理(装入浏览器)将努力利用其情报来填补你们的价值观,即使这两个领域都没有。 详见下文。 这可能有助于你解决问题。

让我解释一下......

我在法医学软件上工作,用户必须审计他们在每一个工作流程中所做的一切,因此需要密码,这样,如果我们的客户得到林业局的审计,我们就会有工作流程的记录。 因此,我们每个纽伦都应用了一个密码领域,但由于用户已经站起来,我们不想让用户也进入它们的标识,以便在实地加以压制。 这是我必须做的事,才能使这一方法发挥作用(为“灵魂”服务)。 我必须补充隐藏的(显示:无)投入领域。

<input runat="server" type="text" style="display:none;">
<asp:TextBox id="TxtPassword" Runat="server" Width="80" EnableViewState="False" TextMode="Password"></asp:TextBox>

文本Box控制实际上使输入领域达到超文本。 在我确定这一问题之前,我有一个搜索场,在密码领域之前有一个网页,并将用户名输入这个领域。 如果在“P”投入领域(或“TxtPasword”)之前,我没有隐蔽的投入领域,那么,它仍将把标识放在我的搜索领域,因为在投入领域之前,它用“TxtPasword”作id。 藏匿的田地(隐蔽)是把这个问题放在Catherine。 用户名称进入了该投入箱,并且注意到该箱甚至有id,然而由于上文方言中显示的陈情,Catherine将标识输入该领域。





相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Remotely authenticating client Windows user on demand

Suppose I am writing a server for a particular network protocol. If I know that the client is running on a Windows machine, is it possible for my server to authenticate the Windows user that owns the ...

Role/Permission based forms authorizing/authentication?

While looking into forms authorizing/authentication, I found that it is possible to do role based authorizing by adding an array of roles to a FormsAuthenticationTicket. That way I can write User....

热门标签