I've been trying to set up a good looking form, but I'm finding it difficult.
I've set it up using text boxes, but the wide gap it leaves between the description and the input box look to ugly in my opinion.
![[Image: J6wlU.png]](https://i.imgur.com/J6wlU.png)
The only way I know to fill the gap, is to make a really long text box which looks equally ugly.
So I thought instead I'd just use an html block, which actually looks great.
![[Image: MXOj5.png]](https://i.imgur.com/MXOj5.png)
But the problem is, anytime I include and html block in my form, the submit button doesn't work.
I click it and it does nothing...
This is the code I have in the html block
PHP Code:
<form>
First name: <input type="text" name="firstname" /><br />
Last name: <input type="text" name="lastname" />
</form>
So my question is... how can I submit an html block?
On a side not, is there anyway to set an html block as required?