
<form id="panel" action="/en/" method="post">
<table>
<tr>
<td class="username"></td>
<td class="langs">
<a href="?ac=lang&lang_new=ru" title="Russian"><img src="http://static2.uploadbox.com/img/rus_lang.gif" alt="" /></a>
<a href="?ac=lang&lang_new=en" title="English"><img src="http://static2.uploadbox.com/img/eng_lang.gif" alt="" /></a>
</td>
</tr>
<tr>
<td colspan="2" class="loginpanel">
<table>
<tr>
<td class="login">
<label for="login">Login:</label>
<input type="text" name="login" id="login" value="" tabindex="1" />
</td>
<td class="pass">
<label for="password">Password:</label>
<input type="password" name="passwd" id="password" value="" tabindex="2" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="formbutton">
<input type="submit" value="login" />
<input type="hidden" name="ac" value="auth" />
</td>
</tr>
</table>
<input type="hidden" name="back" value="" />
</form>
Теперь оставим только важные поля:

<form id="panel" action="/en/" method="post">
<input type="text" name="login" id="login" value="" tabindex="1" />
<input type="password" name="passwd" id="password" value="" tabindex="2" />
<input type="submit" value="login" />
<input type="hidden" name="ac" value="auth"/>
<input type="hidden" name="back" value="" />
</form>
Т.е. мы видим, что должны на URL "/en/" (action="/en/") сервера "uploadbox.com" отправить POST-запрос (method=POST), содержащий данные:
Имя поля | Данные |
login | имя пользователя |
password | пароль |
ac | "auth" (дословно) |
back | "" (дословно) |