Hi all,
I'm using a pre-installed script on my website which collects email addresses to a mailing list.
The HTML code they provide to use on my site includes two radio buttons (one to subscribe and one to unsubscribe), the email box and a submit button.
What I want to do is remove both radio buttons and have just an email box and submit button, meaning that anybody using the form would be subscribing (ie, not given a choice with those two radio buttons).
Is it possible to do using just the code?
I'm using a pre-installed script on my website which collects email addresses to a mailing list.
The HTML code they provide to use on my site includes two radio buttons (one to subscribe and one to unsubscribe), the email box and a submit button.
What I want to do is remove both radio buttons and have just an email box and submit button, meaning that anybody using the form would be subscribing (ie, not given a choice with those two radio buttons).
Is it possible to do using just the code?
Code:
<center>
<form action='http://hosting.heartinternet.co.uk/list.cgi' method='post'>
<input type='hidden' name='list' value='Launch Preview'/>
<input type='hidden' name='redirect-success' value='http://www.explainyourself.co.uk/complete.html'/>
<b>Our Mailing List</b><br/>
<input type='text' name='email'/><br/>
<input class='radio' type='radio' name='action' value='add' checked='checked'/>Subscribe
<input class='radio' type='radio' name='action' value='delete'/>Unsubscribe<br/>
<input type='submit' value='Do it Now!'/>
</form>
</center>