162 lines
7.3 KiB
PHP
Executable File
162 lines
7.3 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('customer-feedback-form') === true) {
|
|
// create validator & auto-validate required fields
|
|
$validator = Form::validate('customer-feedback-form');
|
|
|
|
// additional validation
|
|
$validator->required('<br>Please rate')->validate('company-rating');
|
|
$validator->required('<br>Please rate')->validate('support-rating');
|
|
$validator->required('Please choose one or several product(s)')->validate('product-choice.0');
|
|
$validator->email()->validate('customer-email');
|
|
|
|
// check for errors
|
|
if ($validator->hasErrors()) {
|
|
$_SESSION['errors']['customer-feedback-form'] = $validator->getAllErrors();
|
|
} else {
|
|
$email_config = array(
|
|
'sender_email' => 'contact@phpformbuilder.pro',
|
|
'sender_name' => 'Php Form Builder',
|
|
'recipient_email' => addslashes($_POST['customer-email']),
|
|
'subject' => 'Php Form Builder - Customer Feedback Form',
|
|
'filter_values' => 'customer-feedback-form'
|
|
);
|
|
$sent_message = Form::sendMail($email_config);
|
|
Form::clear('customer-feedback-form');
|
|
}
|
|
}
|
|
|
|
/* ==================================================
|
|
The Form
|
|
================================================== */
|
|
|
|
$form = new Form('customer-feedback-form', 'horizontal', 'data-fv-no-icon=true, novalidate');
|
|
// $form->setMode('development');
|
|
$form->startFieldset('Customer Feedback Form');
|
|
$form->addHtml('<p class="text-primary text-center mt-5">You are encouraged to use the online feedback form below to send us your comments as well as any queries about our products.</p><br>');
|
|
|
|
// 1st row - left col
|
|
$form->addHtml('<div class="row">');
|
|
$form->addHtml('<div class="col-md-6">');
|
|
$form->addInput('text', 'customer-name', '', 'Customer Name', 'required');
|
|
$form->addInput('email', 'customer-email', '', 'E-Mail Address', 'required');
|
|
$form->addInput('text', 'organization', '', 'Organization');
|
|
$form->addHtml('</div>');
|
|
|
|
// 1st row - right col
|
|
$form->addHtml('<div class="col-md-6">');
|
|
$form->addOption('product-choice[]', 'Computers', 'Computers', '', 'data-icon=fa fa-desktop');
|
|
$form->addOption('product-choice[]', 'Games', 'Games', '', 'data-icon=fa fa-gamepad');
|
|
$form->addOption('product-choice[]', 'Books', 'Books', '', 'selected, data-icon=fa fa-book');
|
|
$form->addOption('product-choice[]', 'Music', 'Music', '', 'selected, data-icon=fa fa-headphones');
|
|
$form->addOption('product-choice[]', 'Photos', 'Photos', '', 'data-icon=fa fa-camera-retro');
|
|
$form->addOption('product-choice[]', 'Films', 'Films', '', 'data-icon=fa fa-film');
|
|
$form->addHelper('(multiple choices)', 'product-choice[]');
|
|
$form->addSelect('product-choice[]', 'What products are you interested in ?', 'class=selectpicker, multiple, required');
|
|
$form->addHtml('</div>');
|
|
$form->addHtml('</div>');
|
|
|
|
// 2nd row - left col
|
|
$form->addHtml('<div class="row">');
|
|
$form->addHtml('<div class="col-md-6">');
|
|
$form->addRadio('company-rating', 'Very High', 'Very High');
|
|
$form->addRadio('company-rating', 'High', 'High');
|
|
$form->addRadio('company-rating', 'Neutral', 'Neutral', 'checked=checked');
|
|
$form->addRadio('company-rating', 'Low', 'Low');
|
|
$form->addRadio('company-rating', 'Very Low', 'Very Low');
|
|
$form->printRadioGroup('company-rating', 'How would you rate our company ?', false, 'required');
|
|
$form->addHtml('</div>');
|
|
|
|
// 2nd row - right col
|
|
$form->addHtml('<div class="col-md-6">');
|
|
$form->addRadio('support-rating', 'Excellent', 'Excellent');
|
|
$form->addRadio('support-rating', 'Good', 'Good', 'checked=checked');
|
|
$form->addRadio('support-rating', 'Fair', 'Fair');
|
|
$form->addRadio('support-rating', 'Poor', 'Poor');
|
|
$form->addRadio('support-rating', 'Terrible', 'Terrible');
|
|
$form->printRadioGroup('support-rating', 'How would you rate our support ?', false, 'required');
|
|
$form->addHtml('</div>');
|
|
$form->addHtml('</div>');
|
|
$form->setCols(12, 12);
|
|
$form->addTextarea('comment', '', 'Do you have other comments for us ?');
|
|
$form->centerButtons(true);
|
|
$form->addBtn('submit', 'submit-btn', 1, 'Submit', 'class=btn btn-success ladda-button, data-style=zoom-in');
|
|
$form->endFieldset();
|
|
$form->addHtml('<p class="text-right"><strong class="text-danger">*</strong> Required fields</p>');
|
|
|
|
// iCheck plugin
|
|
$form->addPlugin('icheck', 'input', 'default', array('%theme%' => 'square', '%color%' => 'red'));
|
|
|
|
// jQuery validation
|
|
$form->addPlugin('formvalidation', '#customer-feedback-form');
|
|
?>
|
|
<!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 Customer Feedback Form - How to create PHP forms easily</title>
|
|
<meta name="description" content="Bootstrap 4 Form Generator - how to create a Customer Feedback Form with Php Form Builder Class">
|
|
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/bootstrap-4-forms/customer-feedback-form.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 - Customer Feedback Form</h1>
|
|
<div class="container">
|
|
<?php
|
|
if (isset($sent_message)) {
|
|
echo $sent_message;
|
|
}
|
|
$form->render();
|
|
?>
|
|
</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.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" 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>
|