Login template: Fixed length limit of username / password

Using same limit as on install page now (255)
Closes https://github.com/rsyslog/loganalyzer/issues/23
This commit is contained in:
Andre Lorbach 2018-04-20 08:52:47 +02:00
parent 199392a9de
commit 7aafb588ba
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,8 @@
---------------------------------------------------------------------------
Version 4.1.7 (stable), xxxx-xx-xx
- Fixed mysql calls and php7 compatibility issues in convert.php
- Login template: Fixed length limit of username / password
---------------------------------------------------------------------------
Version 4.1.6 (stable), 2017-11-06
- Fixed mysqli_connect call in UserDB functions.
- Replaced mysql with mysqli functions in install.php script.

View File

@ -28,12 +28,12 @@
<tr>
<td align="right" width="30%"><b>{LN_LOGIN_USERNAME}</b></td>
<td align="left" width="70%">
<input type="text" name="uname" size="14" maxlength="25" value="{uname}" class="maxwidth"></td>
<input type="text" name="uname" size="14" maxlength="255" value="{uname}" class="maxwidth"></td>
</tr>
<tr>
<td align="right"><b>{LN_LOGIN_PASSWORD}</b></td>
<td align="left">
<input type="password" name="pass" size="14" maxlength="20" value="{pass}" class="maxwidth"></td>
<input type="password" name="pass" size="14" maxlength="255" value="{pass}" class="maxwidth"></td>
</tr>
<!--
<tr>