138 lines
5.7 KiB
PHP
Executable File
138 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('join-us-modal-form') === true) {
|
|
// create validator & auto-validate required fields
|
|
$validator = Form::validate('join-us-modal-form');
|
|
|
|
// additional validation
|
|
$validator->email()->validate('user-email');
|
|
|
|
// check for errors
|
|
if ($validator->hasErrors()) {
|
|
$_SESSION['errors']['join-us-modal-form'] = $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 - Join Us Modal Form',
|
|
'filter_values' => 'join-us-modal-form'
|
|
);
|
|
$sent_message = Form::sendMail($email_config);
|
|
Form::clear('join-us-modal-form');
|
|
}
|
|
}
|
|
|
|
/* ==================================================
|
|
The Form
|
|
================================================== */
|
|
|
|
$form = new Form('join-us-modal-form', 'horizontal', 'novalidate', 'material');
|
|
// $form->setMode('development');
|
|
|
|
// materialize plugin
|
|
$form->addPlugin('materialize', '#join-us-modal-form');
|
|
|
|
$form->setCols(0, 12);
|
|
|
|
$form->startFieldset();
|
|
|
|
$form->addHtml('<h4>Get Free Email Updates!<br><small>Join us for FREE to get instant email updates!</small></h4>');
|
|
$form->addIcon('user-name', '<i class="fa fa-lg fa-user"></i>', 'before');
|
|
$form->addInput('text', 'user-name', '', '', 'required, placeholder=Your Name');
|
|
$form->addIcon('user-email', '<i class="fa fa-lg fa-envelope"></i>', 'before');
|
|
$form->addInput('email', 'user-email', '', '', 'required, placeholder=Email');
|
|
$form->addHtml('<p class="text-right mb-5"><small><i class="fa fa-lg fa-lock fa-fw"></i>Your Information is Safe With us!</small></p>');
|
|
$form->centerButtons(true);
|
|
$form->addBtn('button', 'cancel-btn', 1, 'Cancel', 'class=btn btn-default, data-modal-close=modal-target', 'submit-group');
|
|
$form->addBtn('submit', 'submit-btn', 1, 'Get Access Today<i class="fa fa-unlock fa-lg fa-fw pull-right"></i>', 'class=btn btn-success ladda-button, data-style=zoom-in', 'submit-group');
|
|
$form->printBtnGroup('submit-group');
|
|
|
|
$form->endFieldset();
|
|
|
|
// modal plugin
|
|
$form->modal('#modal-target');
|
|
|
|
// jQuery validation
|
|
$form->addPlugin('formvalidation', '#join-us-modal-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 Join Us Modal Form - How to create PHP forms easily</title>
|
|
<meta name="description" content="Bootstrap 4 Form Generator - how to create a Join Us Modal Form with Php Form Builder Class">
|
|
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/bootstrap-4-forms/join-us-form-modal.php" />
|
|
|
|
<!-- Bootstrap 4 CSS -->
|
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
|
|
|
<!-- Font awesome icons -->
|
|
|
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
|
<?php
|
|
|
|
/* =============================================
|
|
CODE PREVIEW - REMOVE THIS IN YOUR FORMS
|
|
============================================= */
|
|
|
|
include_once '../assets/code-preview-head.php';
|
|
?>
|
|
<?php $form->printIncludes('css'); ?>
|
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
|
</head>
|
|
<body>
|
|
<h1 class="text-center">Php Form Builder - Join Us Modal Form<br><small>click to open Modal</small></h1>
|
|
<div class="container">
|
|
<div class="row">
|
|
<?php
|
|
if (isset($sent_message)) {
|
|
echo $sent_message;
|
|
}
|
|
?>
|
|
<!-- Button trigger modal -->
|
|
<div class="text-center">
|
|
<a class="btn btn-primary text-white btn-lg" href="#" data-remodal-target="modal-target">Join us for FREE<i class="fa fa-lg fa-unlock fa-lg fa-fw pull-right"></i></a>
|
|
</div>
|
|
|
|
<?php
|
|
$form->render();
|
|
?>
|
|
</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.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" 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>
|