<patTemplate:tmpl name="auth">
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>{LOGIN}</title>
<link rel="stylesheet" type="text/css" href="themes/{THEME}.css"/>
</head>
<body>
<div id="auth">
<form action="?" method="post">
<table>
<tr class="header">
<td>
<img src="img/protected.png"/>
</td>
<td>
{MESSAGE}:
</td>
</tr>
<tr class="error">
<td colspan="2">
{ERROR}
</td>
</tr>
<tr class="user">
<td>{USER}:</td>
<td>
<input type="text" name="user"/>
</td>
</tr>
<tr class="pass">
<td>{PASS}:</td>
<td>
<input type="password" name="pass"/>
</td>
</tr>
<tr class="submit">
<td colspan="2">
<input type="submit" value="Login"/>
</td>
</tr>
</table>
<input type="hidden" name="action" value="auth"/>
</form>
</div>
</body>
</patTemplate:tmpl>