try to switch off autocompletion of usernames and passwords, when handling user defined mail-profiles

This commit is contained in:
Klaus Leithoff 2012-06-06 13:19:32 +00:00
parent f4de82ada9
commit b9bf671a18

View File

@ -113,7 +113,7 @@ div.inactivetab{ display:none; }
{lang_username}
</td>
<td style="text-align:left;">
<input type="text" style="width: 99%;" name="ic[username]" value="{ic[username]}" maxlength="128">
<input type="text" style="width: 99%;" name="ic[username]" value="{ic[username]}" maxlength="128" autocomplete="off">
</td>
</tr>
<tr>
@ -121,7 +121,7 @@ div.inactivetab{ display:none; }
{lang_password}
</td>
<td style="text-align:left;">
<input type="password" style="width: 99%;" name="ic[password]" value="{ic[password]}" maxlength="128">
<input type="password" style="width: 99%;" name="ic[password]" value="{ic[password]}" maxlength="128" autocomplete="off">
</td>
</tr>
<tr>
@ -242,7 +242,7 @@ div.inactivetab{ display:none; }
{lang_username}
</td>
<td style="text-align:left;">
<input type="text" style="width: 99%;" id="og[username]" name="og[username]" value="{og[username]}" maxlength="128">
<input type="text" style="width: 99%;" id="og[username]" name="og[username]" value="{og[username]}" maxlength="128" autocomplete="off">
</td>
</tr>
<tr>
@ -250,7 +250,7 @@ div.inactivetab{ display:none; }
{lang_password}
</td>
<td style="text-align:left;">
<input type="password" style="width: 99%;" id="og[password]" name="og[password]" value="{og[password]}" maxlength="128">
<input type="password" style="width: 99%;" id="og[password]" name="og[password]" value="{og[password]}" maxlength="128" autocomplete="off">
</td>
</tr>
</table>