Welcome to HBH! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.

Basic 13****Major-Spoilage*****


Scar0ptics's Avatar
Member
0 0

Ok, I have the majority of this one figured out but I'm unable to change the value of the submit button.

<center>You did not login as George, please try again!<br>
<br>
<form method="POST">
<select name="name">
   <option value="Frank">Frank
   <option value="Johnny">Johnny
   <option value="Anna">Anna
   <option value="Jessica">Jessica
</select>

<input type="submit" value="Login" name="subname">
</form>
</center>
</div></div>```

The input type is "submit"; from their, I need to submit it to the correct  URL. But when I put the URL in where submit is nothing new happens?

rex_mundi's Avatar
☆ Lucifer ☆
3,050 6

You don't have to do anything to the submit button, you just need to tell the form what page it's POSTing the data to.

<form method="POST" action="http://">


Scar0ptics's Avatar
Member
0 0

rex_mundi wrote: You don't have to do anything to the submit button, you just need to tell the form what page it's POSTing the data to.

<form method="POST" action="http://">

Ok, that makes more sense. when it executes "POST" in this basic web mission we are able to execute an action..

Thank you.