Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

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,110 12

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.