Modern Style Contact Form??

Associate
Joined
31 Jan 2010
Posts
283
Location
UK
Does anyone know of any Modern looking contact form scripts? Im looking for something that

- Is Free
- Has Captcha
- Modern Looking

Can be made with Ajax or anything really as long as it works.

Looking forward to your replies :)
 
What language are you looking for it to be in, PHP, ASP.NET?

It's pretty easy to make your own with Recaptcha for captchas.
 
OK Well I have put this together and played with the styling:

http://hartwellcleaning.co.uk/contact.php (user : admin - pass : pass123)

It works ok apart from when you send a message it sends you to another page which looks horrible. All I want it to do is add a message above the contact form in green saying "Thank You Message Sent" or something like that.

Is this possible? If so HEEEEELLLLP!! :D
 
Please use labels for all your fields, i.e.:
<label for="from">Your Email Address:</label>

This lets you click on the 'your email address' text and have it select the right input.

You can use the mail function to send an email out to yourself and include all their details.

PHP:
if (mail("[email protected]", "Hi", "Message")) {
 echo "success";
} else {
 echo "fail";
}
 
Please use labels for all your fields, i.e.:
<label for="from">Your Email Address:</label>

This lets you click on the 'your email address' text and have it select the right input.

You can use the mail function to send an email out to yourself and include all their details.

PHP:
if (mail("[email protected]", "Hi", "Message")) {
 echo "success";
} else {
 echo "fail";
}

Ouch thats a bit over my head, not really understanding that.

I designed the site from scratch using HTML and CSS but the form was a free download which I just styled. This is why I was looking for a self contained form which was pre-made and stays on the page without re-directing.
 
Try left aligning your form, I always think that forms centered look weird and feel unatural to fill out.
 
Back
Top Bottom