140 lines
5.7 KiB
PHP
Executable File
140 lines
5.7 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-1') === true) {
|
|
// create validator & auto-validate required fields
|
|
$validator = Form::validate('contact-form-1');
|
|
|
|
// additional validation
|
|
$validator->maxLength(100)->validate('message');
|
|
$validator->email()->validate('user-email');
|
|
|
|
// recaptcha validation
|
|
$validator->recaptcha('6LeNWaQUAAAAAOnei_86FAp7aRZCOhNwK3e2o2x2', 'Recaptcha Error')->validate('g-recaptcha-response');
|
|
|
|
// check for errors
|
|
if ($validator->hasErrors()) {
|
|
$_SESSION['errors']['contact-form-1'] = $validator->getAllErrors();
|
|
} 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-1'
|
|
);
|
|
$sent_message = Form::sendMail($email_config);
|
|
Form::clear('contact-form-1');
|
|
}
|
|
}
|
|
|
|
/* ==================================================
|
|
The Form
|
|
================================================== */
|
|
|
|
$form = new Form('contact-form-1', 'horizontal', 'novalidate', 'bs3');
|
|
// $form->setMode('development');
|
|
$form->startFieldset('Please fill in this form to contact us');
|
|
$form->addHtml('<p class="text-warning">All fields are required</p>');
|
|
$form->groupInputs('user-name', 'user-first-name');
|
|
$form->setCols(0, 6);
|
|
$form->addIcon('user-name', '<span class="glyphicon glyphicon-user"></span>', 'before');
|
|
$form->addInput('text', 'user-name', '', '', 'placeholder=Name, required');
|
|
$form->addIcon('user-first-name', '<span class="glyphicon glyphicon-user"></span>', 'before');
|
|
$form->addInput('text', 'user-first-name', '', '', 'placeholder=First Name, required');
|
|
$form->setCols(0, 12);
|
|
$form->addIcon('user-email', '<span class="glyphicon glyphicon-envelope"></span>', 'before');
|
|
$form->addInput('email', 'user-email', '', '', 'placeholder=Email, required');
|
|
$form->addIcon('user-phone', '<span class="glyphicon glyphicon-earphone"></span>', 'before');
|
|
$form->addInput('text', 'user-phone', '', '', 'data-intphone=true, data-fv-intphonenumber=true, required');
|
|
$form->addTextarea('message', '', '', 'cols=30, rows=4, placeholder=Message, required');
|
|
$form->setCols(6, 6);
|
|
$form->addCheckbox('newsletter', '', '1', 'class=lcswitch, data-ontext=Yes, data-offtext=No, data-theme=yellow, checked');
|
|
$form->printCheckboxGroup('newsletter', 'Suscribe to Newsletter');
|
|
$form->addHtml('<p> </p>');
|
|
$form->setCols(0, 12);
|
|
$form->addRecaptchaV3('6LeNWaQUAAAAAGO_c1ORq2wla-PEFlJruMzyH5L6', 'bs3-contact-form-1');
|
|
$form->centerButtons(true);
|
|
$form->addBtn('reset', 'reset-btn', 1, 'Reset <span class="glyphicon glyphicon-erase append"></span>', 'class=btn btn-warning', 'my-btn-group');
|
|
$form->addBtn('submit', 'submit-btn', 1, 'Send <span class="glyphicon glyphicon-envelope append"></span>', 'class=btn btn-success ladda-button, data-style=zoom-in', 'my-btn-group');
|
|
$form->printBtnGroup('my-btn-group');
|
|
$form->endFieldset();
|
|
|
|
// word-character-count plugin
|
|
$form->addPlugin('word-character-count', '#message', 'default', array('%maxAuthorized%' => 100));
|
|
|
|
// jQuery validation
|
|
$form->addPlugin('formvalidation', '#contact-form-1');
|
|
?>
|
|
<!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>Bootstrap Contact Form - How to create PHP forms easily</title>
|
|
<meta name="description" content="Bootstrap Form Generator - how to create a Contact Form with Php Form Builder Class">
|
|
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/bootstrap-3-forms/contact-form-1.php" />
|
|
<!-- Link to Bootstrap css here -->
|
|
<?php
|
|
|
|
/* =============================================
|
|
CODE PREVIEW - REMOVE THIS IN YOUR FORMS
|
|
AND REPLACE WITH BOOTSTRAP CSS
|
|
FOR EXAMPLE <link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
|
|
============================================= */
|
|
|
|
include_once '../assets/code-preview-head.php';
|
|
?>
|
|
<?php $form->printIncludes('css'); ?>
|
|
</head>
|
|
<body>
|
|
<h1 class="text-center">Php Form Builder - Bootstrap Horizontal Contact Form<br><small>with icons & placeholders</small></h1>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2">
|
|
<?php
|
|
if (isset($sent_message)) {
|
|
echo $sent_message;
|
|
}
|
|
$form->render();
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- jQuery -->
|
|
|
|
<script src="//code.jquery.com/jquery.min.js"></script>
|
|
|
|
<!-- Bootstrap JavaScript -->
|
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.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>
|