146 lines
6.5 KiB
PHP
Executable File
146 lines
6.5 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 = Form::sendMail($email_config);
|
|
Form::clear('contact-form-3');
|
|
}
|
|
}
|
|
|
|
/* ==================================================
|
|
The Form
|
|
================================================== */
|
|
|
|
$form = new Form('contact-form-3', 'horizontal', 'data-fv-no-icon=true, novalidate');
|
|
$form->setMode('development');
|
|
$form->setCols(0, 12);
|
|
$form->startFieldset('Please fill in this form to contact us');
|
|
$form->setCols(0, 6);
|
|
$form->groupInputs('user-name', 'user-first-name');
|
|
$form->addIcon('user-name', '<i class="fa fa-user" aria-hidden="true"></i>', 'before');
|
|
$form->addInput('text', 'user-name', '', '', 'placeholder=Name*, required');
|
|
$form->addInput('text', 'user-first-name', '', '', 'placeholder=First Name');
|
|
$form->setCols(0, 12);
|
|
$form->addIcon('user-email', '<i class="fa fa-envelope" aria-hidden="true"></i>', 'before');
|
|
$form->addInput('email', 'user-email', '', '', 'placeholder=Email, required*');
|
|
$form->addIcon('user-phone', '<i class="fa fa-phone" aria-hidden="true"></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=fa fa-info-circle text-warning');
|
|
$form->addOption('subject', 'Sales', 'Sales', '', 'data-icon=fa fa-usd text-warning');
|
|
$form->addOption('subject', 'Other', 'Other', '', 'data-icon=fa fa-question-circle text-warning');
|
|
$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(6, 6);
|
|
$form->addCheckbox('newsletter', '', 1, 'class=lcswitch mb-3, data-ontext=Yes, data-offtext=No, data-theme=gray-dark, checked=checked');
|
|
$form->printCheckboxGroup('newsletter', 'Suscribe to Newsletter', true, 'class=text-right mr-3 mb-3');
|
|
$form->setCols(0, 12);
|
|
$form->centerButtons(true);
|
|
$form->addBtn('submit', 'submit-btn', 1, 'Send <i class="fa fa-envelope ml-2" aria-hidden="true"></i>', 'class=btn btn-success ladda-button, data-style=zoom-in');
|
|
$form->endFieldset();
|
|
$form->addHtml('<p class="text-warning">* 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, shrink-to-fit=no">
|
|
<title>Bootstrap 4 Contact Form with Rich Text Editor - How to create PHP forms easily</title>
|
|
<meta name="description" content="Bootstrap 4 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/bootstrap-4-forms/contact-form-3.php" />
|
|
|
|
<!-- Bootstrap 4 CSS -->
|
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
|
|
|
<!-- Font awesome icons -->
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
|
|
<?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="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-11 col-lg-10">
|
|
<?php
|
|
if (isset($sent_message)) {
|
|
echo $sent_message;
|
|
}
|
|
$form->render();
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- jQuery -->
|
|
|
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
|
|
|
<!-- Bootstrap 4 JavaScript -->
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
|
<?php
|
|
$form->printIncludes('js');
|
|
$form->printJsCode();
|
|
?>
|
|
<?php
|
|
|
|
/* =============================================
|
|
CODE PREVIEW - REMOVE THIS IN YOUR FORMS
|
|
============================================= */
|
|
|
|
include_once '../assets/code-preview-body.php';
|
|
?>
|
|
</body>
|
|
</html>
|