215 lines
8.8 KiB
PHP
Executable File
215 lines
8.8 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") {
|
|
if (Form::testToken('contact-form-popover-mp') === true) {
|
|
/* contact-form-popover-mp validation & email */
|
|
|
|
// create validator & auto-validate required fields
|
|
$validator = Form::validate('contact-form-popover-mp');
|
|
|
|
// additional validation
|
|
$validator->maxLength(100)->validate('message');
|
|
$validator->email()->validate('user-email');
|
|
$validator->captcha('captcha')->validate('captcha');
|
|
|
|
// check for errors
|
|
if ($validator->hasErrors()) {
|
|
$_SESSION['errors']['contact-form-popover-mp'] = $validator->getAllErrors();
|
|
} else {
|
|
$email_config = array(
|
|
'sender_email' => 'contact@phpformbuilder.pro',
|
|
'sender_name' => 'Php Form Builder',
|
|
'recipient_email' => addslashes($_POST['user-email']),
|
|
'subject' => 'Php Form Builder - Contact Form',
|
|
'filter_values' => 'contact-form-popover-mp'
|
|
);
|
|
$sent_message = Form::sendMail($email_config);
|
|
Form::clear('contact-form-popover-mp');
|
|
}
|
|
} elseif (Form::testToken('join-us-popover-form-mp') === true) {
|
|
/*join-us-popover-form-mp validation & email */
|
|
|
|
// create validator & auto-validate required fields
|
|
$validator = Form::validate('join-us-popover-form-mp');
|
|
|
|
// additional validation
|
|
$validator->email()->validate('join-us-user-email');
|
|
|
|
// check for errors
|
|
if ($validator->hasErrors()) {
|
|
$_SESSION['errors']['join-us-popover-form-mp'] = $validator->getAllErrors();
|
|
} else {
|
|
$email_config = array(
|
|
'sender_email' => 'contact@phpformbuilder.pro',
|
|
'sender_name' => 'Php Form Builder',
|
|
'recipient_email' => addslashes($_POST['join-us-user-email']),
|
|
'subject' => 'Php Form Builder - Join Us Popover Form',
|
|
'filter_values' => 'join-us-popover-form-mp'
|
|
);
|
|
$sent_message = Form::sendMail($email_config);
|
|
Form::clear('join-us-popover-form-mp');
|
|
}
|
|
}
|
|
}
|
|
|
|
/* ==================================================
|
|
The Contact Form
|
|
================================================== */
|
|
|
|
$form = new Form('contact-form-popover-mp', '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, 'xs');
|
|
$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, 'xs');
|
|
$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->addHelper('Enter a valid US phone number', 'user-phone');
|
|
$form->addInput('text', 'user-phone', '', '', 'placeholder=Phone, data-fv-phone, data-fv-phone-country=US, required');
|
|
$form->addTextarea('message', '', 'Your message', 'cols=30, rows=4, required');
|
|
$form->addPlugin('word-character-count', '#message', 'default', array('%maxAuthorized%' => 100));
|
|
$form->addCheckbox('newsletter', 'Suscribe to Newsletter', 1, 'checked=checked');
|
|
$form->printCheckboxGroup('newsletter', '');
|
|
$form->setCols(3, 9, 'sm');
|
|
$form->addInput('text', 'captcha', '', 'Type the following characters :', 'size=15');
|
|
$form->addPlugin('captcha', '#captcha');
|
|
$form->setCols(0, 12, 'xs');
|
|
$form->centerButtons(true);
|
|
$form->addBtn('submit', 'submit-btn', 1, 'Send <span class="glyphicon glyphicon-envelope append"></span>', 'class=btn btn-success ladda-button, data-style=zoom-in');
|
|
$form->endFieldset();
|
|
|
|
// Custom radio & checkbox css
|
|
$form->addPlugin('nice-check', 'form', 'default', ['%skin%' => 'green']);
|
|
|
|
// popover plugin
|
|
$form->popover('#popover-link');
|
|
|
|
// jQuery validation
|
|
$form->addPlugin('formvalidation', '#contact-form-popover-mp');
|
|
|
|
/* ==================================================
|
|
The Join Us Form
|
|
================================================== */
|
|
|
|
$form_2 = new Form('join-us-popover-form-mp', 'horizontal', 'novalidate', 'bs3');
|
|
// $form->setMode('development');
|
|
|
|
$form_2->setCols(0, 12);
|
|
|
|
$form_2->startFieldset();
|
|
$form_2->addHtml('<h4>Get Free Email Updates!<br><small>Join us for FREE to get instant email updates!</small></h4>');
|
|
$form_2->addIcon('join-us-user-name', '<span class="glyphicon glyphicon-user"></span>', 'before');
|
|
$form_2->addInput('text', 'join-us-user-name', '', '', 'placeholder=Your Name, required');
|
|
$form_2->addIcon('join-us-user-email', '<span class="glyphicon glyphicon-envelope"></span>', 'before');
|
|
$form_2->addInput('email', 'join-us-user-email', '', '', 'placeholder=Email, required');
|
|
$form_2->addHtml('<p class="pull-right"><small><i class="fa fa-lock fa-fw"></i>Your Information is Safe With us!</small></p>');
|
|
$form_2->centerButtons(true);
|
|
$form_2->addBtn('submit', 'join-us-submit-btn', 1, 'Get Access Today<i class="fa fa-unlock fa-lg fa-fw pull-right"></i>', 'class=btn btn-lg btn-success ladda-button, data-style=zoom-in');
|
|
$form_2->endFieldset();
|
|
|
|
// popover plugin
|
|
$form_2->popover('#popover-link-2');
|
|
|
|
// jQuery validation
|
|
$form_2->addPlugin('formvalidation', '#join-us-popover-form-mp');
|
|
?>
|
|
<!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 Multiple popover forms - How to create PHP forms easily</title>
|
|
<meta name="description" content="Bootstrap Form Generator - how to create several popover forms on same page with Php Form Builder Class">
|
|
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/bootstrap-3-forms/multiple-popovers.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'); ?>
|
|
<style type="text/css">
|
|
body {
|
|
min-height: 2000px;
|
|
}
|
|
#popover-link {
|
|
position: fixed;
|
|
right: 0;
|
|
top: 48%;
|
|
}
|
|
</style>
|
|
<?php
|
|
$form->printIncludes('css');
|
|
$form_2->printIncludes('css');
|
|
?>
|
|
</head>
|
|
<body>
|
|
<h1 class="text-center">Php Form Builder - several Popover Forms on same page<br><small>click to sign up or contact</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;
|
|
}
|
|
?>
|
|
<a href="#" id="popover-link" data-width="600" data-placement="left" class="btn btn-primary btn-lg">Contact Us</a>
|
|
<a href="#" id="popover-link-2" data-width="600" data-placement="right" class="btn btn-primary btn-lg">Join Us</a>
|
|
<?php
|
|
$form->render();
|
|
$form_2->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_2->printIncludes('js');
|
|
$form->printJsCode();
|
|
$form_2->printJsCode();
|
|
?>
|
|
<?php
|
|
|
|
/* =============================================
|
|
CODE PREVIEW - REMOVE THIS IN YOUR FORMS
|
|
============================================= */
|
|
|
|
include_once '../assets/code-preview-body.php';
|
|
?>
|
|
</body>
|
|
</html>
|