/usr/share/loganalyzer/templates/login.html is in loganalyzer 3.6.6+dfsg-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | <!-- INCLUDE include_header.html -->
<table width="100%" align="center" border="0" cellpadding="1" cellspacing="1" class="with_border">
<!-- IF ISERROR="true" -->
<tr>
<td width="100%" class="line1" align="center">
<br>
<font color="red"><h3>{ERROR_MSG}</h3></font>
<br>
</td>
</tr>
<!-- ENDIF ISERROR="true" -->
<tr>
<td width="100%" class="line2" align="center">
<br>
<strong>{LN_LOGIN_DESCRIPTION}</strong>
<br><br>
<table width="250" cellpadding="0" cellspacing="0" border="0" align="center" class="with_border">
<tr>
<td colspan="10" align="center" valign="top" class="title">
<strong>{LN_LOGIN_TITLE}</strong></td>
</tr>
<tr>
<td align="center" class="line1">
<form action="login.php" method="post">
<table border="0" cellpadding="2" cellspacing="1">
<tr>
<td align="center"><b>{LN_LOGIN_USERNAME}</b></td>
</tr>
<tr>
<td align="center">
<input type="text" name="uname" size="14" maxlength="25" value="{uname}"></td>
</tr>
<tr>
<td align="center"><b>{LN_LOGIN_PASSWORD}</b></td>
</tr>
<tr>
<td align="center">
<input type="password" name="pass" size="14" maxlength="20" value="{pass}"></td>
</tr>
<!--
<tr>
<td align="center">
<input type="checkbox" disabled value="1" name="rememberme" />{LN_LOGIN_SAVEASCOOKIE}</td>
</tr>
-->
<tr>
<td align="center">
<input type="submit" value="{LN_LOGIN_TITLE}">
<input type="hidden" name="op" value="login">
<input type="hidden" name="referer" value="{REDIR_LOGIN}">
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<br><br>
</td>
</tr>
</table>
<!-- INCLUDE include_footer.html -->
|