Added contact form license
This commit is contained in:
parent
9b8d7933f4
commit
33954bac1c
76
email.php
76
email.php
@ -1,76 +0,0 @@
|
|||||||
<?php
|
|
||||||
if (isset($_POST['Email'])) {
|
|
||||||
|
|
||||||
// EDIT THE 2 LINES BELOW AS REQUIRED
|
|
||||||
$email_to = "tech@gilroyhacks.com";
|
|
||||||
$email_subject = "Gilroy Hacks Query [Contact Form]";
|
|
||||||
|
|
||||||
function problem($error)
|
|
||||||
{
|
|
||||||
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
|
|
||||||
echo "These errors appear below.<br><br>";
|
|
||||||
echo $error . "<br><br>";
|
|
||||||
echo "Please go back and fix these errors.<br><br>";
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
|
|
||||||
// validation expected data exists
|
|
||||||
if (
|
|
||||||
!isset($_POST['Name']) ||
|
|
||||||
!isset($_POST['Email']) ||
|
|
||||||
!isset($_POST['Message'])
|
|
||||||
) {
|
|
||||||
problem('We are sorry, but there appears to be a problem with the form you submitted.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$name = $_POST['Name']; // required
|
|
||||||
$email = $_POST['Email']; // required
|
|
||||||
$message = $_POST['Message']; // required
|
|
||||||
|
|
||||||
$error_message = "";
|
|
||||||
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
|
|
||||||
|
|
||||||
if (!preg_match($email_exp, $email)) {
|
|
||||||
$error_message .= 'The Email address you entered does not appear to be valid.<br>';
|
|
||||||
}
|
|
||||||
|
|
||||||
$string_exp = "/^[A-Za-z .'-]+$/";
|
|
||||||
|
|
||||||
if (!preg_match($string_exp, $name)) {
|
|
||||||
$error_message .= 'The Name you entered does not appear to be valid.<br>';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strlen($message) < 2) {
|
|
||||||
$error_message .= 'The Message you entered do not appear to be valid.<br>';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strlen($error_message) > 0) {
|
|
||||||
problem($error_message);
|
|
||||||
}
|
|
||||||
|
|
||||||
$email_message = "Form details below.\n\n";
|
|
||||||
|
|
||||||
function clean_string($string)
|
|
||||||
{
|
|
||||||
$bad = array("content-type", "bcc:", "to:", "cc:", "href");
|
|
||||||
return str_replace($bad, "", $string);
|
|
||||||
}
|
|
||||||
|
|
||||||
$email_message .= "Name: " . clean_string($name) . "\n";
|
|
||||||
$email_message .= "Email: " . clean_string($email) . "\n";
|
|
||||||
$email_message .= "Message: " . clean_string($message) . "\n";
|
|
||||||
|
|
||||||
// create email headers
|
|
||||||
$headers = 'From: ' . $email . "\r\n" .
|
|
||||||
'Reply-To: ' . $email . "\r\n" .
|
|
||||||
'X-Mailer: PHP/' . phpversion();
|
|
||||||
@mail($email_to, $email_subject, $email_message, $headers);
|
|
||||||
?>
|
|
||||||
|
|
||||||
<!-- include your success message below -->
|
|
||||||
|
|
||||||
Thank you for contacting us. We will be in touch with you very soon.
|
|
||||||
|
|
||||||
<?php
|
|
||||||
}
|
|
||||||
?>
|
|
@ -1,3 +1,4 @@
|
|||||||
|
// Src: https://codepen.io/nikhil8krishnan/pen/gaybLK
|
||||||
//material contact form animation
|
//material contact form animation
|
||||||
$(".contact-form")
|
$(".contact-form")
|
||||||
.find(".form-control")
|
.find(".form-control")
|
||||||
|
@ -218,6 +218,22 @@
|
|||||||
<li>Author: <a class="link" href="https://codepen.io/milanraring">Milan Raring</a></li>
|
<li>Author: <a class="link" href="https://codepen.io/milanraring">Milan Raring</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</article>
|
</article>
|
||||||
|
<article class="license-entry">
|
||||||
|
Contact Form
|
||||||
|
<ul>
|
||||||
|
<li>License: Unknown</li>
|
||||||
|
<li>Attribution: <a class="link" href="https://codepen.io/nikhil8krishnan/pen/gaybLK">CodePen</a></li>
|
||||||
|
<li>Author: <a class="link" href="https://codepen.io/nikhil8krishnan">Nikhil Krishnan
|
||||||
|
</a></li>
|
||||||
|
</ul>
|
||||||
|
</article>
|
||||||
|
<article class="license-entry">
|
||||||
|
FormSubmit
|
||||||
|
<ul>
|
||||||
|
<li>License: Unknown</li>
|
||||||
|
<li>Attribution: <a class="link" href="https://formsubmit.co/">FormSubmit</a></li>
|
||||||
|
</ul>
|
||||||
|
</article>
|
||||||
<article class="license-entry">
|
<article class="license-entry">
|
||||||
Leaflet
|
Leaflet
|
||||||
<ul>
|
<ul>
|
||||||
|
Loading…
Reference in New Issue
Block a user