GrapheneForms is a comprehensive form library that aims to make form creation, usage and maintanance easier for developers though a simple JSON Descriptor.

Just a few things included out of the box:


Basic Usage

<!DOCTYPE html>
<html>
  <head>
    <style src='//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css'></style>
    <script type='text/javascript' src='gform_bootstrap.min.js'></script>
    <script type="text/javascript">
      var myForm = new gform({
        data: {first_name: 'John', last_name: 'Doe'},//optional
        fields: [
          {label: 'First Name'}, 
          {label: 'Last Name'},
          {type:'save'}
        ]
      }, '.myForm');
    </script>
  </head>
  <body>
  <div class="myForm">
  </div>
  </body>
</html>