mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 11:19:26 +02:00
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:
parent
199392a9de
commit
7aafb588ba
@ -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.
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user