Files
librenms/html/pages/logon.inc
T
Adam Amstrong 1b8525c11e Prettifying
git-svn-id: http://www.observium.org/svn/observer/trunk@211 61d68cd4-352d-0410-923a-c4978735b2b8
2008-03-30 18:50:06 +00:00

33 lines
844 B
PHP

<?php
echo("
<center><br />
<table border='0' cellpadding='20' cellspacing='20' background='images/login.png' width=479 height=212>
<tr>
<td width=128 height=128></td>
<td>
<form action='". $_SERVER['REQUEST_URI'] ."' method=post>
<h3>Please log in:</h3>
<div style='height: 0px;'></div>
<table border=0 align=left>
<tr>
<td>Username</td>
<td><input type='text' name='username'></td>
</tr>
<tr>
<td>Password</td>
<td><input type='password' name='password'></td>
</tr>
<tr>
<td colspan=2 align='right'><input name='submit' type='submit' value='Login'></td>
</tr>
</table>
</form></td>
</tr>
</table>
</center>");
?>