Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h2 class="text-center">Sample Form</h2>
<form class="form-horizontal">
  <div class="col-sm-6">
    <div class="form-group">
      <label class="control-label col-sm-4">Partner Name</label>
      <div class="col-sm-8">
        <input type="text" class="form-control">
      </div>
    </div>


    <div class="form-group">
      <label class="control-label col-sm-4">Partner Legal Name</label>
      <div class="col-sm-8">
        <input type="text" class="form-control">
      </div>
    </div>
  </div>

  <div class="col-sm-6">
    <div class="form-group">
      <label class="control-label col-sm-4">Partner Email ID</label>
      <div class="col-sm-8">
        <input type="text" class="form-control">
      </div>
    </div>

    <div class="form-group">
      <label class="control-label col-sm-4">Partner Mobile</label>
      <div class="col-sm-8">
        <input type="text" class="form-control">
      </div>
    </div>
  </div>

  <div class="col-sm-12">
    <div class="form-group">
      <label class="control-label col-sm-2">Partner Address</label>
      <div class="col-sm-10">
        <textarea type="text" class="form-control" rows="2"></textarea>
      </div>
    </div>
  </div>


  <div class="col-sm-6">
    <div class="form-group">
      <label class="col-sm-4 control-label">Contract Start Date</label>
      <div class="col-sm-8">
        <input type="text" class="date-start ml-5 form-control datepicker" placeholder="Date Start">
      </div>
    </div>
  </div>

  <div class="col-sm-6">
    <div class="form-group">
      <label class="col-sm-4 control-label">Contract Expiry Date</label>
      <div class="col-sm-8">
        <input type="text" class="date-end ml-5 form-control datepicker col-sm-8" placeholder="Date End">
      </div>
    </div>
  </div>

  <div class="col-sm-6">
    <div class="form-group">
      <label class="col-sm-4 control-label">Minimum Loan Amount</label>
      <div class="col-sm-8">
        <input type="text" class="form-control">
      </div>
    </div>
  </div>
  
  <div class="col-sm-6">
    <div class="form-group">
      <label class="col-sm-4 control-label">Maximum Loan Amount</label>
      <div class="col-sm-8">
        <input type="text" class="form-control">
      </div>
    </div>
  </div>

  <div class="col-sm-6">
    <div class="form-group">
      <label class="col-sm-4 control-label">Interest Rate</label>
    <div class="col-sm-8">
        <input type="text" class="form-control">
      </div>
    </div>
  </div>

  <div class="col-sm-6">
    <div class="form-group">
      <label class="col-sm-4 control-label">Deposit Amount</label>
    <div class="col-sm-8">
        <input type="text" class="form-control">
      </div>
    </div>
  </div>

  <div class="text-center">
    <button class="btn btn-primary waves-effect waves-light " id="btn-submit">Save</button>
  </div>
  <input type="hidden" name="action" id="action" value="event_dialog_add_newpartnerdata" />
</form>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console