View previous topic :: View next topic |
Author |
Message |
blengyel
Joined: 25 Jul 2010 Posts: 1
|
Posted: Sun Jul 25, 2010 10:16 pm Post subject: Submit button is in BOX, can not use to submit |
|
|
I have created a form and it looks great, however the SUBMIT button is not functional. It appears in a box instead of being able to submit the form. Does anyone have any idea why this is happening.
You can see it at http://apgf.org/online-application/
FYI...I am using 1and1.com has my hosting company using their mybusinesssite package. |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Mon Jul 26, 2010 7:22 am Post subject: Reply |
|
|
Good Day,
The problem is that the HTML on your site is different than what we have provided. It was most likely altered by your web host or content management system provider. If you look at the code live on your website, you will see the following line:
Code: |
<input name="submit" value="Submit"> |
Below is what we have provided:
Code: |
<input name="submit" value="Submit" type="Submit"> |
The missing 'type' parameter is causing the button to be displayed as a text box instead of a submit button. You can try to manually change this on your site, but if it reverts back you'll need to contact your web host for support.
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
|