Sysode
Front-End Developer
Sup, haven't released anything for some time now and thought I'd whip something quick up now.
Lé contact form
Basically a contact form that will stand out from the rest, completely customized etc.. Hope you like it, it's free (Obv..) so I'll give both a demo and screenshots.
Lé Screenshot -
Lé Demo -
Lé Download -
Okay, so the aim of this was to provide a neat looking contact form that worked, I haven't included the PHP for the form to work, incase you wanted to add your own.
If you do not wish to add your own, please use the template below, it is very basic:
Eh, sorry it isn't much but hope it helps.
Lé contact form
Basically a contact form that will stand out from the rest, completely customized etc.. Hope you like it, it's free (Obv..) so I'll give both a demo and screenshots.
Lé Screenshot -
You must be registered for see links
Lé Demo -
You must be registered for see links
Lé Download -
You must be registered for see links
(Don't trust? Don't download)Okay, so the aim of this was to provide a neat looking contact form that worked, I haven't included the PHP for the form to work, incase you wanted to add your own.
If you do not wish to add your own, please use the template below, it is very basic:
PHP:
<?php $name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];
$formcontent="From: $name \n Message: $message";
$recipient = "[email protected]";
$subject = "Contact Form";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
echo "Thank You! Your form has been sent to me, you may now return back to where you came from by <a href=\"http://www.reecematthews.co.uk/site\">clicking here.<a/>";
?>
Eh, sorry it isn't much but hope it helps.