144 lines
5.9 KiB
PHP
Executable File
144 lines
5.9 KiB
PHP
Executable File
<?php
|
|
use phpformbuilder\Form;
|
|
use phpformbuilder\Validator\Validator;
|
|
|
|
/* =============================================
|
|
start session and include form class
|
|
============================================= */
|
|
|
|
session_start();
|
|
include_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/Form.php';
|
|
|
|
/* =============================================
|
|
validation if posted
|
|
============================================= */
|
|
|
|
if ($_SERVER["REQUEST_METHOD"] == "POST" && Form::testToken('contact-form-3') === true) {
|
|
// create validator & auto-validate required fields
|
|
$validator = Form::validate('contact-form-3');
|
|
|
|
// additional validation
|
|
$validator->email()->validate('user-email');
|
|
|
|
// check for errors
|
|
if ($validator->hasErrors()) {
|
|
$_SESSION['errors']['contact-form-3'] = $validator->getAllErrors();
|
|
var_dump($_SESSION['errors']['contact-form-3']);
|
|
} else {
|
|
$_POST['message'] = nl2br($_POST['message']);
|
|
$email_config = array(
|
|
'sender_email' => 'contact@phpformbuilder.pro',
|
|
'sender_name' => 'Php Form Builder',
|
|
'recipient_email' => addslashes($_POST['user-email']),
|
|
'subject' => 'Contact from Php Form Builder',
|
|
'filter_values' => 'contact-form-3',
|
|
'sent_message' => '<div class="success callout"><p>Your message has been successfully sent !</p></div>'
|
|
);
|
|
$sent_message = Form::sendMail($email_config);
|
|
Form::clear('contact-form-3');
|
|
}
|
|
}
|
|
|
|
/* ==================================================
|
|
The Form
|
|
================================================== */
|
|
|
|
$form = new Form('contact-form-3', 'horizontal', 'novalidate', 'foundation');
|
|
// $form->setMode('development');
|
|
$form->setCols(0, 12);
|
|
$form->startFieldset('Please fill in this form to contact us');
|
|
$form->setCols(0, 6, 'md');
|
|
$form->groupInputs('user-name', 'user-first-name');
|
|
$form->addIcon('user-name', '<i class="input-group-label fi-torso"></i>', 'before');
|
|
$form->addInput('text', 'user-name', '', '', 'class=input-group-field, placeholder=Name*, required');
|
|
$form->addInput('text', 'user-first-name', '', '', 'placeholder=First Name');
|
|
$form->setCols(0, 12);
|
|
$form->addIcon('user-email', '<i class="input-group-label fi-mail"></i>', 'before');
|
|
$form->addInput('email', 'user-email', '', '', 'class=input-group-field, placeholder=Email, required*');
|
|
$form->addIcon('user-phone', '<i class="input-group-label fi-telephone"></i>', 'before');
|
|
$form->addInput('tel', 'user-phone', '', '', 'data-intphone=true, data-fv-intphonenumber=true, required');
|
|
$form->addHelper('If other, please tell us more ... ', 'subject');
|
|
$form->addOption('subject', '', 'Your request concerns ...');
|
|
$form->addOption('subject', 'Support', 'Support', '', 'data-icon=fi fi-info prepend');
|
|
$form->addOption('subject', 'Sales', 'Sales', '', 'data-icon=fi fi-dollar prepend');
|
|
$form->addOption('subject', 'Other', 'Other', '', 'data-icon=fi fi-anchor prepend');
|
|
$form->addSelect('subject', '', 'class=select2');
|
|
$form->startDependentFields('subject', 'Other');
|
|
$form->addInput('text', 'subject-other', '', '', 'placeholder=Please tell more about your request ..., required');
|
|
$form->endDependentFields();
|
|
$form->addTextarea('message', 'Your message ...', '', 'cols=30, rows=4, required');
|
|
$form->addPlugin('tinymce', '#message', 'contact-config');
|
|
$form->setCols(3, 9);
|
|
$form->addCheckbox('newsletter', '', '1', 'class=lcswitch, data-ontext=Yes, data-offtext=No, data-theme=gray-dark, checked');
|
|
$form->printCheckboxGroup('newsletter', 'Suscribe to Newsletter');
|
|
$form->setCols(0, 12);
|
|
$form->addHtml('<p> </p>');
|
|
$form->centerButtons(true);
|
|
$form->addBtn('submit', 'submit-btn', 1, 'Send <i class="fi-mail append"></i>', 'class=success button');
|
|
$form->endFieldset();
|
|
$form->addHtml('<p>* Required fields</p>');
|
|
|
|
// jQuery validation
|
|
$form->addPlugin('formvalidation', '#contact-form-3');
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Foundation Contact Form with Rich Text Editor - How to create PHP forms easily</title>
|
|
<meta name="description" content="Foundation Form Generator - how to create a Contact Form with Rich Text Editor using Php Form Builder Class">
|
|
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/foundation-forms/contact-form-3.php" />
|
|
|
|
<!-- Foundation CSS -->
|
|
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.5.0/css/foundation.min.css" rel="stylesheet">
|
|
|
|
<!-- foundation icons -->
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.min.css">
|
|
<?php
|
|
|
|
/* =============================================
|
|
CODE PREVIEW - REMOVE THIS IN YOUR FORMS
|
|
============================================= */
|
|
|
|
include_once '../assets/code-preview-head.php';
|
|
?>
|
|
|
|
<?php $form->printIncludes('css'); ?>
|
|
</head>
|
|
<body>
|
|
<h1 class="text-center">Php Form Builder - Contact Form<br><small>with Rich Text Editor and Dependent Field</small></h1>
|
|
<div class="grid-container">
|
|
<div class="grid-x grid-padding-x">
|
|
<div class="small-10 small-offset-1 medium-8 medium-offset-2 cell">
|
|
<?php
|
|
if (isset($sent_message)) {
|
|
echo $sent_message;
|
|
}
|
|
$form->render();
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- jQuery -->
|
|
|
|
<script src="//code.jquery.com/jquery.min.js"></script>
|
|
<?php
|
|
$form->printIncludes('js');
|
|
$form->printJsCode();
|
|
?>
|
|
<?php
|
|
|
|
/* =============================================
|
|
CODE PREVIEW - REMOVE THIS IN YOUR FORMS
|
|
============================================= */
|
|
|
|
include_once '../assets/code-preview-body.php';
|
|
?>
|
|
</body>
|
|
</html>
|