furl
Getting startedDesignComponents
Design
Design GuidelinesTypography SystemLayout SystemColor palettesCustomization
Components
ComponentsAccordionAlertAnchorAudioAvatarBadgeBreadcrumbsButtonButtonGroupCalendarCardCollapseContextButtonDividerDropdownFooterFormGraphGridHyperlinkIconIframeImageInputItemLayoutListLoaderMediaObjectMenuModalNotificationPaginationPopoverProgressSearchStepsSwitchTableTabsTooltipTypographyVideo

Form

Forms are used to collect, validate and submit data through your application.

Examples

Single-Column Form
Two-Column Form
import React from 'react';
import ReactDOM from 'react-dom';
import { Form, FormLegend, FormLabel, Input } from 'furl-components';

ReactDOM.render(
 <div>
  <Form>
    <FormLegend>Signup form</FormLegend>
    <FormLabel htmlFor='username'>Username</FormLabel>
    <Input id='username' placeholder='Enter your username...' />
    <FormLabel htmlFor='pwd'>Password</FormLabel>
    <Input type='password' id='pwd' placeholder='Enter your password...' />
    <FormLabel htmlFor='pwd-repeat'>Repeat Password</FormLabel>
    <Input type='password' id='pwd-repeat' placeholder='Repeat your password...' />
    <FormLabel htmlFor='email'>E-mail</FormLabel>
    <Input type='email' id='email' placeholder='mail@server.com' />
  </Form>
  <Form
    twoColumn
    legend='Signup form'
    data={[
      {
        name: 'username',
        label: 'Username'
      },
      {
        type: 'password',
        name: 'password',
        placeholder: '',
        label: 'Password'
      },
      {
        type: 'password',
        name: 'repeat',
        placeholder: '',
        label: 'Repeat password'
      },
      {
        type: 'email',
        name: 'email',
        label: 'E-mail',
        placeholder: 'mail@server.com'
      }
    ]}
  />
 </div>, 
  document.getElementById('root')
);

API

Form props
Property Description Type Default
color form color string 'plain'
size form size string 'normal'
fill form fill style string 'flat'
twoColumn form two column layout boolean false'
legend form legend string
data form data source array(object)
action form action string
method form method string
name form name string
encType form encoding type string
openIn form response target string 'self'
autocomplete form autocomplete property boolean false
FormLabel props
Property Description Type Default
htmlFor label bound element id string

Notes

  • You can populate a form either via passing children to it or via the use of the data prop. If data is provided, it will take precedence over passed children, therefore rendering only the content provided in data.
  • data only accepts an array of objects, allowing you to pass a React component tree.
  • color can be one of the following: 'normal', 'light' or 'dark'.
  • size can be one of the following: 'small', 'normal' or 'large'.
  • fill can be one of the following: 'flat' or 'solid'.
  • openIn can be one of the following: 'self', 'blank' or 'external'.

furl was designed and developed by Angelos Chalaris © 2019
Documentation generated using Gatsby, hosting by Netlify