I have following form:
<table width="250" cellspacing="2" cellpadding="5" border="0" bgcolor="#ffffff" id="inner_table"><tbody><tr>
<td align="center" style="font: 12px arial, helvetica, sans-serif; color: #000000;" id="main">
<script type="text/javascript">
function validateRegistered() {
return true;
}
</script>
<form method="post" name="registered" onsubmit="return validateRegistered()">
<input type="hidden" name="url" value="">
<input type="hidden" name="ip" value="192.168.96.10">
<input type="hidden" name="code" value="d">
<div style="display: none;"></div><br><br>
<table cellpadding="4" border="0">
<tbody><tr><td>Name: </td><td><input type="text" name="data1" style="width: 120px"></td></tr>
<tr><td>Email: </td><td><input type="text" name="data2" style="width: 120px"></td></tr>
<tr><td colspan="2" align="center"><input type="submit" value="CONNECT" style="font: 12px arial, helvetica, sans-serif"></td></tr>
</tbody></table>
<br>
<div style="display: none;"></div>
</form>
This is a fixed code that is displayed by tag <!--LOGIN-->
so I have no access to it what so ever and cannot modify.
Now is there a way I can send values of 2 additional inputs with the existing form upon submit to the destination page?