maxLength(100)->validate('message'); $validator->email()->validate('user-email'); // recaptcha validation $validator->recaptcha('6LeNWaQUAAAAAOnei_86FAp7aRZCOhNwK3e2o2x2', 'Recaptcha Error')->validate('g-recaptcha-response'); // check for errors if ($validator->hasErrors()) { $_SESSION['errors']['contact-form-1-modal'] = $validator->getAllErrors(); } else { $_POST['message'] = nl2br($_POST['message']); $email_config = array( 'sender_email' => 'contact@phpformbuilder.pro', 'sender_name' => 'Php Form Builder', 'recipient_email' => addslashes($_POST['user-email']), 'subject' => 'Contact from Php Form Builder', 'filter_values' => 'contact-form-1-modal' ); $sent_message = Form::sendMail($email_config); Form::clear('contact-form-1-modal'); } } /* ================================================== The Form ================================================== */ $form = new Form('contact-form-1-modal', 'horizontal', 'novalidate', 'bs3'); // $form->setMode('development'); $form->startFieldset('Please fill in this form to contact us'); $form->addHtml('

All fields are required

'); $form->groupInputs('user-name', 'user-first-name'); $form->setCols(0, 6); $form->addIcon('user-name', '', 'before'); $form->addInput('text', 'user-name', '', '', 'placeholder=Name, required'); $form->addIcon('user-first-name', '', 'before'); $form->addInput('text', 'user-first-name', '', '', 'placeholder=First Name, required'); $form->setCols(0, 12); $form->addIcon('user-email', '', 'before'); $form->addInput('email', 'user-email', '', '', 'placeholder=Email, required'); $form->addIcon('user-phone', '', 'before'); $form->addInput('tel', 'user-phone', '', '', 'data-intphone=true, data-fv-intphonenumber=true, required'); $form->addTextarea('message', '', '', 'cols=30, rows=4, placeholder=Message, required'); $form->setCols(6, 6); $form->addCheckbox('newsletter', '', '1', 'class=lcswitch, data-ontext=Yes, data-offtext=No, data-theme=yellow, checked'); $form->printCheckboxGroup('newsletter', 'Suscribe to Newsletter'); $form->addHtml('

 

'); $form->setCols(0, 12); $form->addRecaptchaV3('6LeNWaQUAAAAAGO_c1ORq2wla-PEFlJruMzyH5L6', 'bs3-contact-form-1-modal'); $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, 'Send ', 'class=btn btn-success ladda-button, data-style=zoom-in', 'submit_group'); $form->printBtnGroup('submit_group'); $form->endFieldset(); // word-character-count plugin $form->addPlugin('word-character-count', '#message', 'default', array('%maxAuthorized%' => 100)); // modal $form->modal('#modal-target'); // jQuery validation $form->addPlugin('formvalidation', '#contact-form-1-modal'); ?> Bootstrap Modal Contact Form - How to create PHP forms easily ============================================= */ include_once '../assets/code-preview-head.php'; ?> printIncludes('css'); ?>

Php Form Builder - Bootstrap Modal Contact Form

Contact Us render(); ?>
printIncludes('js'); $form->printJsCode(); ?>