143 lines
5.4 KiB
PHP
Executable File
143 lines
5.4 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' => '<p class="card-panel teal accent-2">Your message has been successfully sent !</p>'
|
|
);
|
|
$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');
|
|
|
|
$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="material-icons">person</i>', 'before');
|
|
$form->addInput('text', 'user-name', '', '', 'required, placeholder=Your Name');
|
|
$form->addIcon('user-email', '<i class="material-icons">email</i>', 'before');
|
|
$form->addInput('email', 'user-email', '', '', 'required, placeholder=Email');
|
|
$form->addHtml('<p class="text-right mb-5"><small><i class="material-icons">lock</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="material-icons right">lock_open</i>', 'class=btn waves-effect waves-light 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>Material Design Join Us Modal Form - How to create PHP forms easily</title>
|
|
<meta name="description" content="Material Design Form Generator - how to create a Join Us Modal Form with Php Form Builder Class">
|
|
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/material-forms/join-us-form-modal.php" />
|
|
|
|
<!-- Materialize CSS -->
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
|
|
|
|
<!-- Material icons CSS -->
|
|
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<?php
|
|
|
|
/* =============================================
|
|
CODE PREVIEW - REMOVE THIS IN YOUR FORMS
|
|
============================================= */
|
|
|
|
include_once '../assets/code-preview-head.php';
|
|
?>
|
|
<?php $form->printIncludes('css'); ?>
|
|
</head>
|
|
<body>
|
|
<h1 class="center-align">Php Form Builder - Join Us Modal Form<br><small>click to open Modal</small></h1>
|
|
<div class="container">
|
|
<?php
|
|
// information for users - remove this in your forms
|
|
include_once '../assets/material-forms-notice.php';
|
|
?>
|
|
|
|
<div class="row">
|
|
<?php
|
|
if (isset($sent_message)) {
|
|
echo $sent_message;
|
|
}
|
|
?>
|
|
<!-- Button trigger modal -->
|
|
<div class="center-align">
|
|
<a class="waves-effect waves-light btn-large" href="#" data-remodal-target="modal-target">Join us for FREE<i class="material-icons right">lock_open</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>
|
|
|
|
<!-- Materialize JavaScript -->
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.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>
|