<?php
use phpformbuilder\Form;
use phpformbuilder\Validator\Validator;
use phpformbuilder\database\Mysql;
session_start();
include_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/Form.php';
if ($_SERVER["REQUEST_METHOD"] == "POST" && Form::testToken('special-offer-sign-up') === true) {
$validator = Form::validate('special-offer-sign-up');
$validator->email()->validate('user-email');
if ($validator->hasErrors()) {
$_SESSION['errors']['special-offer-sign-up'] = $validator->getAllErrors();
} else {
Form::clear('special-offer-sign-up');
$user_message = '<p class="alert alert-success">Thanks for signing up !</p>' . "\n";
}
}
$form = new Form('special-offer-sign-up', 'horizontal', 'novalidate', 'material');
$form->addPlugin('materialize', '#special-offer-sign-up');
$form->addHtml('<h3>Special Offer Sign Up<br><small>Enter your Name and Email to get Special Deals</small></h3>');
$form->addHtml('<label>Full Name<sup class="text-danger">* </sup></label>');
$form->setCols(0, 6);
$form->groupInputs('user-first-name', 'user-name');
$form->addInput('text', 'user-first-name', '', 'First Name', 'required');
$form->addInput('text', 'user-name', '', 'Last Name', 'required');
$form->addHtml('<label>E-mail<sup class="text-danger">* </sup></label></label>');
$form->setCols(0, 12);
$form->addIcon('user-email', '<i class="fa fa-lg fa-envelope" aria-hidden="true"></i>', 'before');
$form->addInput('email', 'user-email', '', 'E-mail', 'required');
$form->centerButtons(true);
$form->addBtn('submit', 'submit-btn', 1, 'Sign Up <i class="fa fa-arrow-right ml-2" aria-hidden="true"></i>', 'class=btn btn-primary');
$form->addPlugin('formvalidation', '#special-offer-sign-up');
?>
<!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>Material Design Bootstrap 4 Special Offer Sign Up Form - How to create PHP forms easily</title>
<meta name="description" content="Material Design Bootstrap 4 Form Generator - how to create a Special Offer Sign Up with Php Form Builder Class">
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/material-forms/special-offer-sign-up.php" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<?php $form->printIncludes('css'); ?>
<style type="text/css">
.help-block {
padding-left: 0;
}
</style>
<?php $form->printIncludes('css'); ?>
</head>
<body>
<h1 class="text-center">Php Form Builder - Material Design Bootstrap 4 Special Offer Sign Up Form<br><small>vertical form with helpers</small></h1>
<div class="container">
<?php
include_once '../assets/material-bootstrap-forms-notice.php';
?>
<div class="row justify-content-center">
<div class="col-sm-10 col-md-6">
<?php
if (isset($user_message)) {
echo $user_message;
}
$form->render();
?>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<?php
$form->printIncludes('js');
$form->printJsCode();
?>
</body>
</html>