Change input type of account_login to text

This fixes autofill by Chrome and other tools

(cherry picked from commit fb326d03545c6403da98da50b37a05e276e11ad0)
This commit is contained in:
slawkens 2020-05-10 11:45:55 +02:00
parent b15c213890
commit 6de4953d50

View File

@ -34,7 +34,7 @@
<table style="float: left; width: 370px;" cellpadding="0" cellspacing="0" > <table style="float: left; width: 370px;" cellpadding="0" cellspacing="0" >
<tr> <tr>
<td class="LabelV" ><span{% if error is not null %} class="red"{% endif %}>Account {{ account }}:</span></td> <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>
<tr> <tr>
<td class="LabelV" ><span{% if error is not null %} class="red"{% endif %}>Password:</span></td> <td class="LabelV" ><span{% if error is not null %} class="red"{% endif %}>Password:</span></td>