<?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('order-form') === true) {
// create validator & auto-validate required fields
$validator = Form::validate('order-form');
// additional validation
$validator->maxLength(100)->validate('message');
$validator->email()->validate('email');
// check for errors
if ($validator->hasErrors()) {
$_SESSION['errors']['order-form'] = $validator->getAllErrors();
} else {
$email_config = array(
'sender_email' => '[email protected]',
'sender_name' => 'Php Form Builder',
'recipient_email' => addslashes($_POST['email']),
'subject' => 'Php Form Builder - Order Form',
'filter_values' => 'order-form'
);
$sent_message = Form::sendMail($email_config);
Form::clear('order-form');
}
}
/* ==================================================
The Form
================================================== */
$form = new Form('order-form', 'vertical', 'novalidate', 'uikit');
$form->setMode('development');
$form->startFieldset('Order Form', 'class=uk-fieldset', 'class=uk-legend uk-margin-bottom');
$form->startRow();
$form->startCol(12);
$form->addHeading('Full name', 'label', 'class=uk-form-label');
$form->endCol();
$form->endRow();
$form->startRow('uk-margin-small-top');
$form->startCol(6);
$form->addHelper('First name', 'first-name');
$form->addInput('text', 'first-name', '', '', 'required');
$form->endCol();
$form->startCol(6);
$form->addHelper('Last name', 'last-name');
$form->addInput('text', 'last-name', '', '', 'required');
$form->endCol();
$form->endRow();
// start main row
$form->startRow();
// start main col
$form->startCol(6);
// start nested row
$form->startRow();
$form->startCol(12);
$form->addInput('email', 'email', '', 'Email', 'required');
$form->endCol();
$form->endRow();
$form->startRow();
$form->startCol(12);
$form->addHeading('Contact Number', 'label', 'class=uk-form-label');
$form->endCol();
$form->endRow();
$form->startRow('uk-margin-small-top');
$form->startCol(4);
$form->addHelper('Area Code', 'area-code');
$form->addInput('text', 'area-code', '', '', 'data-fv-regexp=true, data-fv-regexp___regexp=[+0-9-]+, data-fv-regexp___message=Please enter a valid Area Code, required');
$form->endCol();
$form->startCol(8);
$form->addHelper('Valid US Phone Number', 'phone-number');
$form->addInput('text', 'phone-number', '', '', 'data-fv-phone, data-fv-phone___country=US, required');
$form->endCol();
// end nested row
$form->endRow();
// end main col
$form->endCol();
// start main col
$form->startCol(6);
$form->addRadio('payment-method', '<img src="../assets/img/cb.png" alt="credit card">', 'credit-card');
$form->addRadio('payment-method', '<img src="../assets/img/paypal.png" alt="paypal">', 'paypal');
$form->printRadioGroup('payment-method', 'Payment Method', false);
// end main col
$form->endCol();
// end main row
$form->endRow();
$form->addHelper('Street Address', 'street-address');
$form->addInput('text', 'street-address', '', 'Billing Address', 'required');
$form->addHelper('Street Address Line 2', 'street-address-2');
$form->addInput('text', 'street-address-2');
$form->startRow();
$form->startCol(6);
$form->addHelper('City', 'city');
$form->addInput('text', 'city', '', '', 'required');
$form->endCol();
$form->startCol(6);
$form->addHelper('State / Province', 'state');
$form->addInput('text', 'state');
$form->endCol();
$form->endRow();
$form->startRow();
$form->startCol(6);
$form->addHelper('Postal / Zip Code', 'zip-code');
$form->addInput('text', 'zip-code', '', '', 'required');
$form->endCol();
$form->startCol(6);
$form->addHelper('Country', 'country');
// preselect US
if (!isset($_SESSION['order-form']['country'])) {
$_SESSION['order-form']['country'] = 'US';
}
$form->addCountrySelect('country', '', '', array('flag_size' => 32, 'return_value' => 'code', 'placeholder' => 'Select your country'));
$form->endCol();
$form->endRow();
// Inverted Dependent field - if non-US selected
$form->startDependentFields('country', 'US', true);
$form->addTextarea('additional-informations', '', 'Additional informations', 'rows=7, class=uk-margin-medium-bottom');
$form->endDependentFields();
$form->centerContent();
$form->addBtn('submit', 'submit-btn', 1, 'Proceed <i class="uk-icon fas fa-check uk-margin-left" aria-hidden="true"></i>', 'class=uk-button uk-button-primary, data-ladda-button=true, data-style=zoom-in');
$form->endFieldset();
// Custom radio & checkbox css
$form->addPlugin('nice-check', '#order-form', 'default', ['skin' => 'red']);
// Javascript validation
$form->addPlugin('formvalidation', '#order-form');
?>
<!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>UIkit Order Form - How to create PHP forms easily</title>
<meta name="description" content="UIkit Form Generator - how to create an UIkit Order Form with Php Form Builder">
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/uikit-forms/order-form.php" />
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css" />
<!-- 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'); ?>
</head>
<body>
<h1 class="uk-text-center">Php Form Builder - Order Form<br><small>vertical form with custom rows & columns</small></h1>
<div class="uk-container" style="min-width:70vw;">
<?php
if (isset($sent_message)) {
echo $sent_message;
}
$form->render();
?>
</div>
<!-- UIkit JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit.min.js"></script>
<?php
$form->printIncludes('js');
$form->printJsCode();
?>
</body>
</html>