Top Quality Products

Green Forms – Standalone Form Builder

4.76
Expert ScoreRead review

$23.00

Added to wishlistRemoved from wishlist 0
Add to compare

1170 sales

LIVE PREVIEW

Green Forms – Standalone Form Builder

Green Forms – Standalone Form Builder Review

Introduction

Are you tired of using clunky and limited form builders that don’t meet your needs? Look no further than Green Forms, the most powerful and fastest form builder on the market. With its intuitive drag-and-drop interface, vast array of features, and seamless integration with popular CRM, marketing, and newsletter services, Green Forms is the ultimate solution for any form-building needs.

Features

Green Forms boasts an impressive list of features that make it stand out from the competition. Some of the key highlights include:

  • Drag-and-drop form builder with over 20 form elements
  • Full grid system for complex layouts
  • Built-in anti-spam technology
  • Form styling options with hundreds of fonts and icons
  • Conditional logic and math expressions
  • Integration with popular CRM, marketing, and newsletter services
  • Payment forms with PayPal integration
  • Interactive forms with real-time user input
  • Email notifications and user confirmation emails
  • 3rd party integrations with MySQL databases, GET/POST requests, and more
  • Custom error messages and field validation
  • RTL support and Google Fonts integration
  • Ajax-powered forms with zero page refreshing
  • Performance optimization for improved speed and efficiency

Installation and Updates

Installing Green Forms is a breeze, with a simple wizard that guides you through the process. Updates are also easy to manage, with a manual procedure that involves downloading the latest version and overwriting existing files.

Server Requirements

Green Forms requires a server with the following specifications:

  • PHP version 5.5 or higher
  • MySQL version 5.0 or higher

Support

The Green Forms team is committed to providing top-notch support to ensure that you get the most out of the script. With a comprehensive documentation and a prompt response to any questions or issues, you can be confident that you’re in good hands.

Conclusion

Green Forms is an exceptional form builder that offers unparalleled flexibility, customization, and performance. With its vast array of features, intuitive interface, and seamless integration with popular services, it’s the perfect solution for any form-building needs. Don’t settle for mediocre form builders – upgrade to Green Forms today and experience the power and flexibility of the most advanced form builder on the market.

Score: 4.76

Recommendation

I highly recommend Green Forms to anyone looking for a reliable and powerful form builder. Its impressive feature set, ease of use, and seamless integration with popular services make it an ideal solution for anyone looking to create complex and customized forms.

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “Green Forms – Standalone Form Builder”

Your email address will not be published. Required fields are marked *

Introduction to Green Forms - Standalone Form Builder

Green Forms is a powerful and intuitive standalone form builder that allows you to create custom forms without needing to write a single line of code. With its user-friendly interface and flexible design, you can quickly build forms to collect data, gather feedback, or create surveys for your personal or professional projects.

In this tutorial, we'll walk you through the steps of using Green Forms to create your own custom forms. By the end of this tutorial, you'll be able to create forms with multiple fields, validate user input, and even integrate your forms with other tools and services.

Getting Started with Green Forms

Before we dive into the tutorial, make sure you have Green Forms installed on your computer. You can download the latest version from the Green Forms website.

Once installed, launch Green Forms and you'll see the following interface:

Green Forms Interface

The main window of Green Forms is divided into several sections:

  • Form Designer: This is where you design and build your forms. You'll find a range of tools and options to add fields, customize layout, and more.
  • Field Library: This section contains a list of pre-built fields you can use in your forms, including text inputs, checkboxes, radio buttons, and more.
  • Property Panel: This panel shows the properties and settings for the currently selected field.

Now that we've familiarized ourselves with the interface, let's start building our first form!

Step 1: Creating a New Form

To create a new form, click on the "File" menu and select "New Form". Alternatively, you can also use the keyboard shortcut "Ctrl + N" (Windows) or "Command + N" (Mac).

A new form will be created with a default title, "Untitled Form". Click on the title to edit it and give your form a more descriptive name.

Step 2: Adding Fields to Your Form

To add a field to your form, drag and drop a field from the Field Library into the Form Designer. You can also use the "Insert Field" button at the top of the Form Designer to add a field.

For this example, let's add a text input field. Drag and drop the "Text Input" field from the Field Library into the Form Designer.

Step 3: Customizing Your Field

With the text input field selected, you can customize its properties in the Property Panel. Let's set the field label to "Your Name" and change the placeholder text to "Enter your name".

Click on the "Save" button to save your changes.

Step 4: Adding More Fields to Your Form

Repeat steps 2 and 3 to add more fields to your form. For example, you can add a checkbox field to collect agreement information, a dropdown field to collect a user's country, and more.

Step 5: Saving and Previewing Your Form

Once you've added all the fields you need, click on the "File" menu and select "Save" to save your form. You can also use the keyboard shortcut "Ctrl + S" (Windows) or "Command + S" (Mac).

To preview your form, click on the "Preview" button at the top of the Form Designer. This will open a new window showing a live preview of your form.

Step 6: Deploying Your Form

To deploy your form, click on the "Deploy" button at the top of the Form Designer. You can deploy your form as an HTML file, which can be hosted on a website or shared via email.

Congratulations! You've completed the Green Forms tutorial and built your first custom form. In the next tutorial, we'll explore more advanced features of Green Forms, including form validation, submission handlers, and integration with other tools and services.

Here is a complete settings example for Green Forms - Standalone Form Builder:

Database Configuration

'database' => [
    'driver' => 'mysql',
    'host' => 'localhost',
    'database' => 'greenforms',
    'username' => 'greenforms',
    'password' => 'password',
    'charset' => 'utf8',
    'collation' => 'utf8_unicode_ci',
    'prefix' => '',
],

Form Builder Configuration

'form-builder' => [
    'cache' => true,
    'cache_expiration' => 3600,
    'cache_storage' => 'file',
    'cache_path' => storage_path('cache/greenforms'),
    'form_types' => [
        'text',
        'textarea',
        'email',
        'tel',
        'checkbox',
        'radio',
        'select',
        'multiselect',
        'file',
        'hidden',
    ],
],

Form Validation Configuration

'form-validation' => [
    'rules' => [
        'required' => 'required',
        'email' => 'email',
        'numeric' => 'numeric',
        'alpha' => 'alpha',
        'alpha_dash' => 'alpha_dash',
        'alpha_num' => 'alpha_num',
        'max' => 'max',
        'min' => 'min',
    ],
    'messages' => [
        'required' => 'This field is required',
        'email' => 'Invalid email',
        'numeric' => 'Invalid number',
        'alpha' => 'Invalid characters',
        'alpha_dash' => 'Invalid characters',
        'alpha_num' => 'Invalid characters',
        'max' => 'Value exceeds maximum limit',
        'min' => 'Value is less than minimum limit',
    ],
],

Email Configuration

'email' => [
    'driver' => 'smtp',
    'host' => 'smtp.gmail.com',
    'port' => 587,
    'from' => 'your-email@gmail.com',
    'from_name' => 'Your Name',
    'encryption' => 'tls',
    'username' => 'your-email@gmail.com',
    'password' => 'your-password',
],

File Configuration

'files' => [
    'disk' => 'public',
    'path' => 'uploads',
    'url' => '/uploads',
    'visibility' => 'public',
],

Laravel Configuration

'laravel' => [
    'app_name' => 'Green Forms',
    'app_url' => 'http://localhost/greenforms',
    'app_key' => 'your-app-key',
],

Here are the key features of Green Forms, a standalone form builder:

Main Features

  1. Drag-n-drop form builder: Create forms with easy-to-use drag and drop Form Builder. No coding knowledge is needed.
  2. Over 20 form elements: Form builder has everything that is needed to create special forms. No limits for your imagination.
  3. Full grid system: Create complex layouts with a one of a kind drag and drop grid system. Includes unlimited column nesting.
  4. Built-in anti-spam: No need for captcha or reCaptcha with new technology anti-spam built into Green Forms.
  5. Form styling: Easily style any element of your form with overall styling settings. Tons of options for any needs.
  6. Native themes: Form builder goes with pre-defined netive themes for any needs.
  7. Built-in Theme Manager: Create and manage custom form themes.
  8. Multi-step forms: Break your complex form into several steps for better user experience. It's easy.
  9. Conditional logic: Perform actions on form fields, confirmations, notifications, etc. based on user input and selection.
  10. Math expressions: Perform powerful real-time Math expressions based on user input and selection.
  11. Payment forms: Request users to pay money and perform action after successful payment. Green Forms has integration with PayPal.
  12. Interactive forms: Forms can interact with users by displaying the users input in real-time.
  13. Email notifications: Send custom email notifications and user confirmation emails. Use conditional logic, if needed.
  14. 3rd party integrations: Automatically submit user input and selection to popular CRM, marketing and newsletter services.
  15. HTML form integration: Automatically submit user input and selection to 3rd party HTML-forms given by your service provider.
  16. 3rd party MySQL database: Automatically INSERT user input and selection into 3rd party MySQL database/table.
  17. Custom GET/POST-requests: Automatically send user input and selection to 3rd party URL using GET/POST-requests.
  18. Popup mode: Raise a form as a popup by clicking any element: button, link, menu item, etc.
  19. Remote use: Easily embed any form into 3rd party sites (just copy-paste couple JS/HTML-snippets).
  20. Form stats: Stats of form views, submissions, confirmations and payments for any form for any period.
  21. Field analytics: A set of submitted data can be represented in a convenient way, such as bar charts.
  22. Pre-populate fields: Do it with dynamic data from URL or by setting static default values.
  23. Confirmation system logic: Show confirmations based on user input and selection.
  24. User input filtering: Use optional filters to strip unwanted submitted data.
  25. Performance optimized: Form builder is well optimized for better performance.
  26. Google Analytics event tracker: Track form submission events.
  27. Zero Programming: No coding knowledge is needed to use Green Forms.
  28. Fully responsive: Forms look nice on any devices.
  29. Unlimited notifications: Unlimited emails can be sent from a single submission.
  30. Conditional logic on notifications: Send emails based on user input and selection.
  31. Field validation: Validate user input using 14 built-in validators.
  32. Advanced email validation: check MX-record for domain or use 3rd party services such as: Clearout, Kickbox, TheChecker.
  33. Custom error messages: Show custom error bubble based on validation result.
  34. Google Fonts: Use hundreds fonts to customize form elements.
  35. 1500 icons: Green Forms works with latest Font Awesome pack.
  36. RTL support: Green Forms works with RTL sites.
  37. Support: We are ready to help you as fast as possible.
  38. Documentation: Green Forms is well documented.
  39. Ajax-powered: Forms are submitted without any page refreshing.
  40. Integration with CRM/marketing tools: Green Forms works with 47 providers: Acelle Mail, ActiveCampaign, ActiveTrail, AgileCRM, Automizy, AvangEmail, AWeber, Beehiiv, BirdSend, Bitrix24, Campaign Monitor, CleverReach, Constant Contact, Conversio, Drip, FreshMail, GetResponse, HubSpot, INBOX, Interspire, Jetpack Subscriptions, Klaviyo, Mad Mimi, Mailautic, MailChimp, MailerLite, MailFit, Mailgun, Mailjet, Mailmodo, MailPoet, Mailster, MailWizz, Mautic, Moosend, Mumara, Omnisend, Ontraport, Rapidmail, SalesAutoPilot, SendFox, SendGrid, SendinBlue, SendPulse, Sendy, Your Mailing List Provider, Zapier, Zoho CRM.
  41. Conditional logic on integrations: Perform integrations based on user input and selection.
  42. Integration with payment providers: Green Forms works with PayPal, Stripe, Skrill, Authorize.Net, Blockchain, Instamojo, Mollie, PayUmoney, Razorpay, Perfect Money, Yandex.Money, Paystack, WePay, PayFast and InterKassa.
  43. Integration with SMS gateways: Green Forms works with BulkSend, FatewayAPI, MojSMS, Nexmo, Twilio.
  44. Double opt-in: Request users to confirm email addresses.
  45. Sensitive data saving: Decide which user data must be saved in database.
  46. Export/import forms: Easily move forms between different installations.
  47. Export form records: Save all form records into CSV-file.
  48. Duplicate forms: Easily create a copy of exiting form.
  49. Custom CSS and classes: Add them to any form elements.
  50. Custom JS handlers: Execute custom JavaScript code when form initialized or successfully submitted.

Installation

  1. Unpack downloaded archive and upload files to your server.
  2. Open it in your browser – Wizard will be launched automatically. If you have SSL installed, open it through https://
  3. Wizard ask for couple questions. Nothing special – MySQL parameters and admin credentials to access Admin Panel.
  4. Once finished, go to Dashboard and click “Green Forms” box under “Installed Plugins” section. It activates the plugin.
  5. Once activated, plugin adds relevant item to Left Side Menu.
  6. Find “How To Use” submenu item. It explains how to embed plugin into your website – nothing difficult, just paste couple JS/HTML-snippets.

Updates

  1. Download latest version of the script from CodeCanyon.
  2. Overwrite existing files on your server, except file /inc/config.php and folder /content/data/.

Server Requirements

  1. PHP version 5.5 or higher.
  2. MySQL version 5.0 or higher.

Support

If you have problems regarding using the script, please contact us and we'll help you ASAP.

Changelog

Please visit Changelog and check out what we added/fixed in latest version of Green Forms.

Green Forms – Standalone Form Builder
Green Forms – Standalone Form Builder

$23.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0