138 lines
5.2 KiB
PHP
Executable File
138 lines
5.2 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-popover-form') === true) {
|
|
// create validator & auto-validate required fields
|
|
$validator = Form::validate('join-us-popover-form');
|
|
|
|
// additional validation
|
|
$validator->email()->validate('user-email');
|
|
|
|
// check for errors
|
|
if ($validator->hasErrors()) {
|
|
$_SESSION['errors']['join-us-popover-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 Popover Form',
|
|
'filter_values' => 'join-us-popover-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-popover-form');
|
|
}
|
|
}
|
|
|
|
/* ==================================================
|
|
The Form
|
|
================================================== */
|
|
|
|
$form = new Form('join-us-popover-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><p> </p>');
|
|
$form->centerButtons(true);
|
|
$form->addBtn('submit', 'submit-btn', 1, 'Get Access Today<i class="material-icons right">lock_open</i>', 'class=btn btn-large waves-effect waves-light ladda-button, data-style=zoom-in');
|
|
|
|
$form->endFieldset();
|
|
|
|
// popover plugin
|
|
$form->popover('#popover-link');
|
|
|
|
// jQuery validation
|
|
$form->addPlugin('formvalidation', '#join-us-popover-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 Popover Form - How to create PHP forms easily</title>
|
|
<meta name="description" content="Material Design Form Generator - how to create a Join Us Popover Form with Php Form Builder Class">
|
|
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/material-forms/join-us-form-popover.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 Popover Form<br><small>click to open Popover</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 popover -->
|
|
<a href="#" id="popover-link" data-width="600" data-placement="right" class="waves-effect waves-light btn-large">Join Us</a>
|
|
<?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', false, true, false);
|
|
$form->printJsCode();
|
|
?>
|
|
<?php
|
|
|
|
/* =============================================
|
|
CODE PREVIEW - REMOVE THIS IN YOUR FORMS
|
|
============================================= */
|
|
|
|
include_once '../assets/code-preview-body.php';
|
|
?>
|
|
</body>
|
|
</html>
|