About Material Design, Bootstrap & Materialize
Detailed explanations here: Material Design Forms
<?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';
$current_step = 1; // default if nothing posted
if (isset($_POST['back-btn'])) {
$current_step = $_POST['back-btn'];
} elseif ($_SERVER["REQUEST_METHOD"] == "POST") {
if (isset($_POST['form-step-1']) && Form::testToken('form-step-1') === true) {
/* Validate step 1 */
// create validator & auto-validate required fields
$validator = Form::validate('form-step-1');
// additional validation
$validator->notStartsWith('robot', Form::buildAlert('Sorry I don\' like robots ...', 'bs4', 'danger'))->validate('human-or-robot');
if ($validator->hasErrors()) {
$current_step = 1;
$_SESSION['errors']['form-step-1'] = $validator->getAllErrors();
} else { // register posted values and go to next step
Form::registerValues('form-step-1');
$current_step = 2;
}
} elseif (isset($_POST['form-step-2']) && Form::testToken('form-step-2') === true) {
/* Validate step 2 */
// create validator & auto-validate required fields
$validator = Form::validate('form-step-2');
if ($validator->hasErrors()) {
$current_step = 2;
$_SESSION['errors']['form-step-2'] = $validator->getAllErrors();
} else { // register posted values and go to next step
Form::registerValues('form-step-2');
$current_step = 3;
}
} elseif (isset($_POST['form-step-3']) && Form::testToken('form-step-3') === true) {
/* Validate step 3 */
// create validator & auto-validate required fields
$validator = Form::validate('form-step-3');
// additional validation
$validator->email()->validate('user-email');
if ($validator->hasErrors()) {
$current_step = 3;
$_SESSION['errors']['form-step-3'] = $validator->getAllErrors();
} elseif ($_POST['are-informations-correct'] < 1) { // back to step 1 with user message (wrong informations)
$current_step = 1;
$user_message = Form::buildAlert('<strong>Wrong informations ! </strong> Please try again ...', 'bs4', 'warning');
} else { // send email & go back to step 1 with user message (email sended)
Form::registerValues('form-step-3');
$user_values = Form::mergeValues(array('form-step-1', 'form-step-2', 'form-step-3'));
/* translate boolean values to text */
$find = array('/0/', '/1/');
$replace = array('No', 'Yes');
$user_values['human-or-robot'] = preg_replace($find, $replace, $user_values['human-or-robot']);
$user_values['are-informations-correct'] = preg_replace($find, $replace, $user_values['are-informations-correct']);
$email_config = array(
'sender_email' => '[email protected]',
'sender_name' => 'Php Form Builder',
'recipient_email' => addslashes($_POST['user-email']),
'subject' => 'contact from Php Form Builder',
'values' => $user_values,
'filter_values' => 'form-step-1, form-step-2, form-step-3'
);
$user_message = Form::sendMail($email_config);
$current_step = 1;
}
}
}
if ($current_step == 1) {
/* ==================================================
Step 1
================================================== */
$form_id = 'form-step-1';
$form = new Form('form-step-1', 'horizontal', 'novalidate', 'material');
$form->setMode('development');
// materialize plugin
$form->addPlugin('materialize', '#form-step-1');
$form->addRadio('human-or-robot', 'I\'m a real human', 'real human');
$form->addRadio('human-or-robot', 'I\'m a robot', 'robot');
$form->printRadioGroup('human-or-robot', 'Are you a human or a robot ?', false, 'required');
$form->setCols(0, 12);
$form->centerContent();
$form->addBtn('submit', 'submit-btn', 1, 'Next <i class="fas fa-arrow-right ml-2" aria-hidden="true"></i>', 'class=btn btn-primary waves-effect waves-light, data-ladda-button=true, data-style=zoom-in');
} elseif ($current_step == 2) {
/* ==================================================
Step 2
================================================== */
$form_id = 'form-step-2';
$form = new Form('form-step-2', 'horizontal', 'novalidate', 'material');
$form->setMode('development');
// materialize plugin
$form->addPlugin('materialize', '#form-step-1');
$form->addOption('how-did-you-come-here', 'By foot', 'By foot');
$form->addOption('how-did-you-come-here', 'By plane', 'By plane');
$form->addOption('how-did-you-come-here', 'By car', 'By car');
$form->addOption('how-did-you-come-here', 'By boat', 'By boat');
$form->addOption('how-did-you-come-here', 'By bike', 'By bike');
$form->addSelect('how-did-you-come-here', 'How did you come here ?', 'data-slimselect=true, required');
$form->setCols(0, 12);
$form->centerContent();
$form->addBtn('submit', 'back-btn', 1, '<i class="fas fa-arrow-left mr-2" aria-hidden="true"></i> Back', 'class=btn btn-warning waves-effect waves-light', 'btns');
$form->addBtn('submit', 'submit-btn', 2, 'Next <i class="fas fa-arrow-right ml-2" aria-hidden="true"></i>', 'class=btn btn-primary waves-effect waves-light, data-ladda-button=true, data-style=zoom-in', 'btns');
$form->printBtnGroup('btns');
} elseif ($current_step == 3) {
/* ==================================================
Step 3
================================================== */
$form_id = 'form-step-3';
$form = new Form('form-step-3', 'horizontal', 'novalidate', 'material');
$form->setMode('development');
// materialize plugin
$form->addPlugin('materialize', '#form-step-1');
$form->addHtml('<p class="lead"><strong>You are human, you came here ' . strtolower($_SESSION['form-step-2']['how-did-you-come-here']) . '.</strong></p>');
$form->addRadio('are-informations-correct', 'Yes, Excellent', 1);
$form->addRadio('are-informations-correct', 'Absolutely not', 0);
$form->printRadioGroup('are-informations-correct', 'Are these informations correct ?', false, 'required');
$form->addHelper('Enter your real e-mail if you want to receive results', 'user-email');
$form->addInput('email', 'user-email', '', 'E-mail', 'required');
$form->setCols(0, 12);
$form->centerContent();
$form->addBtn('submit', 'back-btn', 2, '<i class="fas fa-arrow-left mr-2" aria-hidden="true"></i> Back', 'class=btn btn-warning waves-effect waves-light', 'btns');
$form->addBtn('submit', 'submit-btn', 3, 'Submit <i class="fas fa-arrow-right ml-2" aria-hidden="true"></i>', 'class=btn btn-primary waves-effect waves-light, data-ladda-button=true, data-style=zoom-in', 'btns');
$form->printBtnGroup('btns');
}
$form->addPlugin('pretty-checkbox', '#' . $form_id, 'default', ['color' => 'info']);
// Javascript validation
$form->addPlugin('formvalidation', '#' . $form_id);
?>
<!DOCTYPE html>
<html lang="en-US">
<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 Bootstrap Simple Step Form - How to create PHP forms easily</title>
<meta name="description" content="Material Bootstrap Form Generator - how to create a simple Step Form with Php Form Builder">
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/material-bootstrap-forms/simple-step-form.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="https://use.fontawesome.com/releases/v5.15.4/css/solid.css" integrity="sha384-Tv5i09RULyHKMwX0E8wJUqSOaXlyu3SQxORObAI08iUwIalMmN5L6AvlPX2LMoSE" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/fontawesome.css" integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7" crossorigin="anonymous">
<?php $form->printIncludes('css'); ?>
<style>
/* custom styles for demo */
body {
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
}
</style>
</head>
<body>
<h1 class="text-center">Php Form Builder - Simple Step Form<br><small>follow steps to complete</small></h1>
<div class="container">
<?php
// information for users - remove this in your forms
include_once '../assets/material-bootstrap-forms-notice.php';
?>
<div class="row justify-content-center">
<div class="col-md-11 col-lg-10">
<?php
if (isset($user_message)) {
echo $user_message;
}
?>
<h2 class="center-align mb-5">Simple Step Form</h2>
<?php
$form->render();
?>
</div>
</div>
</div>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!-- Bootstrap 4 JavaScript -->
<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();
?>
<script>
document.addEventListener('DOMContentLoaded', function(event) {
// destroy the validator if we click a back button
if (document.querySelector('button[name="back-btn"]')) {
document.querySelector('button[name="back-btn"]').addEventListener('click', function() {
var form = forms['<?php echo $form_id; ?>'];
form.fv.destroy();
});
}
});
</script>
</body>
</html>