Skip to content

Nitsorn/react-dropform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

react-dropform

Dropforms. Forms that are contained inside buttons.

Demo

#Installation

1. npm install

npm install react-dropform --save

2. In your component.jsx

require DropFrom in the component you wish to use this in.
var DropForm = require('./dropform.jsx');

3. In your CSS

include dropform.css to your project.
<link rel="stylesheet" href="./link/to/dropform.css">

Usage

var DropForm = require('dropform');

var component = React.createClass({
  render: function() {
    return (
      <div>
        <DropForm
          open={false}
          title='Sign In'
          formStyle='default' // * optional
          className='inline-block align-top'>
        {
        // Add the form you want to create. Example below.
        }
          <form>
            <fieldset>
              <input type="text" className="centered capitalize" name='preview' required/>
              <label for='preview'>Email Address</label>
            </fieldset>
            <fieldset>
              <input type="password" className="centered capitalize" name='preview' required/>
              <label for='preview'>Password</label>
            </fieldset>
            <button className='sharp-filled white-text' type='submit'>Submit</button>
          </form>

        </DropForm>
      </div>
    );
  }
});

Variables

  <DropForm
    open={false}
    title='Sign In'
    className='inline-block align-top'>

open (boolean): Whether or not the form is shown on initial render.
title (string): Title of the button.
className (string): Additional classes for the form container.
formStyle (string): default, semi-round, round (see demo video)

About

Dropforms. Forms that are contained inside buttons.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published