Form analysis
2 forms found in the DOM
POST /
<form method="post" action="/">
<input type="hidden" name="mode" value="1">
<table class="tbl">
<tbody>
<tr>
<td>Логин:</td>
<td><input type="text" name="login" value=""></td>
</tr>
<tr>
<td>Email:</td>
<td><input type="text" name="email" value=""></td>
</tr>
<tr>
<td colspan="2"><input type="submit"></td>
</tr>
</tbody>
</table>
</form>
POST /
<form method="post" action="/">
<input type="hidden" name="mode" value="2">
<table class="tbl">
<tbody>
<tr>
<td>Логин:</td>
<td><input type="text" name="login" value=""></td>
</tr>
<tr>
<td>Пароль:</td>
<td><input type="password" name="oldpwd" value=""></td>
</tr>
<tr>
<td>Новый пароль:</td>
<td><input type="password" name="pwd1" value=""></td>
</tr>
<tr>
<td>Подтверждение:</td>
<td><input type="password" name="pwd2" value=""></td>
</tr>
<tr>
<td colspan="2"><input type="submit"></td>
</tr>
</tbody>
</table>
</form>