Change input type of account_login to text

This fixes autofill by Chrome and other tools
This commit is contained in:
slawkens 2020-05-10 11:45:55 +02:00
parent e84933cf26
commit fb326d0354

View File

@ -34,7 +34,7 @@
<table style="float: left; width: 370px;" cellpadding="0" cellspacing="0" >
<tr>
<td class="LabelV" ><span{% if error is not null %} class="red"{% endif %}>Account {{ account }}:</span></td>
<td><input type="password" name="account_login" size="35" maxlength="30" autofocus /></td>
<td><input type="text" name="account_login" size="35" maxlength="30" autofocus /></td>
</tr>
<tr>
<td class="LabelV" ><span{% if error is not null %} class="red"{% endif %}>Password:</span></td>