Socket
Socket
Sign inDemoInstall

@springernature/springernature-forms

Package Overview
Dependencies
0
Maintainers
14
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @springernature/springernature-forms

Springer Nature branded styles for text, checkbox, radio button, textarea and select inputs


Version published
Weekly downloads
2.2K
increased by11.88%
Maintainers
14
Install size
64.6 kB
Created
Weekly downloads
 

Readme

Source

Springer Nature forms

Springer Nature branded styles for text, checkbox, radio button, textarea and select inputs.

Usage

CSS

Import the SCSS you need in your application

// Include this with your settings
@import '@springernature/springernature-forms/scss/10-settings/forms';

// Include this with your mixins
@import '@springernature/springernature-forms/scss/30-mixins/forms';

// Include this with your base
@import '@springernature/springernature-forms/scss/40-base/forms';

// Include this with your other components
@import '@springernature/springernature-forms/scss/50-components/forms';
@import '@springernature/springernature-forms/scss/50-components/errors';

// Include this with your other utilities, since icons and buttons are needed.
@import '@springernature/brand-context/default/scss/60-utilities/icons';
@import '@springernature/brand-context/default/scss/60-utilities/buttons';

Components

  • Text input
  • Text area
  • Hint text
  • Error hint
  • File upload
  • Radio buttons
  • Checkboxes
  • Form headings
  • Error summary
  • Select field
  • Form buttons

Text input

For when you need users to enter no longer than a single line of text, for instance their name, phone number...

<div class="c-forms__field">
	<label for="firstName">
		<span class="c-forms__label-text">First name</span>
	</label>
	<input class="c-forms__input" type="text" id="firstName" name="firstName" value="" />
</div>

Text area

For when you need users to enter text longer than a single line, for instance their feedback...

<div class="c-forms__field">
	<label for="feedback">
		<span class="c-forms__label-text">Feedback</span>
	</label>
	<textarea class="c-forms__input" name="feedback" id="feedback" rows="5"></textarea>
</div>

Hint text

Hint text is meant to help the majority of users, providing guidance about the format of the related input, where they can find the requested information... The aim is that they have all the keys necessary to not fail the validation on the related input.

<div class="c-forms__field">
	<label for="password">
		<span class="c-forms__label-text">Password</span>
		<span class="c-forms__hint">Hint: 8 characters or more</span>
	</label>
	<input class="c-forms__input" type="password" name="password" id="password" value="" />
</div>

Error hint

Error hint is meant to signal users something is incorrect their input. For instance it can be empty or of an incorrect format.

<div class="c-forms__field">
	<label for="lastName">
		<span class="c-forms__label-text">Last name</span>
		<span class="c-forms__field-error" data-component="error-hint">
		<svg class="u-icon" width="18" height="18" aria-hidden="true" focusable="false"><use xlink:href="#icon-warning"></use></svg>
		<span>Enter the last name</span>
	</span>
	</label>
	<input class="c-forms__input" type="text" id="lastName" name="lastName" value="" />
</div>

File upload

Let users select and upload a file.

<div class="c-forms__field">
	<label for="profilePicture">
		<span class="c-forms__label-text">Profile picture (optional)</span>
		<span class="c-forms__hint">Hint: Must be a GIF, JPG or PNG file and no larger than 1MB.</span>
	</label>
	<input class="c-forms__input c-forms__input--file" type="file" id="profilePicture" name="profilePicture" accept=".gif,.jpg,.jpeg,.png">
</div>

Radio buttons

Let users select only one option from a short list of options.

<div class="c-forms__field">
    <fieldset>
        <legend>
            <span>Do you already have an account?</span>
        </legend>
        <div class="c-forms__radio">
            <input type="radio" name="have-account" value="mr" id="have-account-yes">
            <label for="have-account-yes">Yes</label>
        </div>
        <div class="c-forms__radio">
            <input type="radio" name="have-account" value="mrs" id="have-acount-no">
            <label for="have-account-no">No</label>
        </div>
    </fieldset>
</div>
Radio buttons with form indent

Let users enter additional and related information to an option they picked from radio buttons.

Note: So far this component is not yet enhanced by javascript. An enhanced experience would be to first hide the additional field. They would reveal only upon selection of their related option...

<div class="c-forms__field">
    <fieldset>
        <legend>
            <div class="u-margin-bottom-small">How should we contact you ?</div>
        </legend>
        <div class="c-forms__field c-forms__radio">
            <input type="radio" name="contactViaToggle" id="contactViaToggleEmail" checked="">
            <label for="contactViaToggleEmail">
                <span class="c-forms__label-text">Via email</span>
            </label>
        </div>
        <div class="c-forms__indent">
            <div class="c-forms__field">
                <label for="contactViaEmail">
                    <span>Email address</span>
                </label>
                <input type="email" name="contactViaEmail" id="contactViaEmail" size="60" value="">
            </div>
        </div>
        <div class="c-forms__field c-forms__radio">
            <input type="radio" name="contactViaToggle" id="contactViaToggleText">
            <label for="contactViaToggleText">
                <span class="c-forms__label-text">Via text message</span>
            </label>
        </div>
        <div class="c-forms__indent">
            <div class="c-forms__field">
                <label for="contactViaText">
                    <span class="c-forms__label-text">Mobile phone number</span>
                </label>
                <input type="text" name="contactViaText" id="contactViaText" size="30" value="">
            </div>
        </div>
    </fieldset>
</div>

Checkboxes

Let users select one or more options from a short list of options.

<div class="c-forms__field">
	<div class="c-forms__checkbox">
		<input type="checkbox" name="termsAndConditions" value="" id="termsAndConditions">
		<label for="termsAndConditions">I agree to <a href="#">the terms and conditions</a></label>
	</div>
</div>

Form headings

For when the form needs a bit of structure, you can user form headings and sub headings.

<h3 class="c-forms__heading">Create your account</h3>
	<div class="c-forms__section">
		<h4 class="c-forms__subheading">Profile information</h4>
		<div class="c-forms__field">
			<label for="fullName">
				<span class="c-forms__label-text">Full name</span>
			</label>
			<input class="c-forms__input" type="text" id="fullName" name="fullName" value="" />
		</div>
	</div>
</div>

Error summary

Use this component at the top of a page to summarise any errors a user has made. There are two types of errors:

  • Specific errors which are related to a single form field. These are anchors that links to the form field that needs fixing.
  • General errors which are not related to a single form field (e.g. We didn't find any results for you search). These are plain text feedback for the user.

Note: When a user makes an error, you must show both an error summary and an error message next to each answer that contains an error.

<div class="c-forms__error-summary" role="group" id="errorSummary" aria-labelledby="errorSummaryHeading" tabindex="-1" data-component="error-summary">
    <h3 class="c-forms__error-summary-heading" id="errorSummaryHeading">Sorry, we couldn't submit the form</h3>
    <ul class="c-forms__error-summary-general-list">
        <li>We didn't find any results for your search</li>
    </ul>
    <ul class="c-forms__error-summary-specific-list">
        <li><a href="#lastName">Enter your last name</a></li>
        <li><a href="#password">Enter your password</a></li>
    </ul>
</div>

Select field

Let users select one or more options from a long list of options.

Note: Use it as a last resort as research shows that some users find selects very difficult to use. Favour using Radios or checkbox in the case of short list of options.

Watch a video about how some users struggle with selects.

<div class="c-forms__field">
	<label for="domain">
		<span class="c-forms__label-text">Country</span>
	</label>
	<div class="c-forms__select">
		<select id="country" name="country">
			<option value="">--Please choose a country--</option>
            <option value="GB">United Kingdom</option>
            <option value="AL">Albania</option>
            <option value="AD">Andorra</option>
            <option value="AT">Austria</option>
            <option value="BY">Belarus</option>
            <option value="BE">Belgium</option>
            <option value="BA">Bosnia and Herzegovina</option>
            <option value="BG">Bulgaria</option>
            <option value="HR">Croatia (Hrvatska)</option>
            <option value="CY">Cyprus</option>
            <option value="CZ">Czech Republic</option>
            <option value="FR">France</option>
            <option value="GI">Gibraltar</option>
            <option value="DE">Germany</option>
            <option value="GR">Greece</option>
            <option value="VA">Holy See (Vatican City State)</option>
            <option value="HU">Hungary</option>
            <option value="IT">Italy</option>
            <option value="LI">Liechtenstein</option>
            <option value="LU">Luxembourg</option>
            <option value="MK">Macedonia</option>
            <option value="MT">Malta</option>
            <option value="MD">Moldova</option>
            <option value="MC">Monaco</option>
            <option value="ME">Montenegro</option>
            <option value="NL">Netherlands</option>
            <option value="PL">Poland</option>
            <option value="PT">Portugal</option>
            <option value="RO">Romania</option>
            <option value="SM">San Marino</option>
            <option value="RS">Serbia</option>
            <option value="SK">Slovakia</option>
            <option value="SI">Slovenia</option>
            <option value="ES">Spain</option>
            <option value="UA">Ukraine</option>
            <option value="DK">Denmark</option>
            <option value="EE">Estonia</option>
            <option value="FO">Faroe Islands</option>
            <option value="FI">Finland</option>
            <option value="GL">Greenland</option>
            <option value="IS">Iceland</option>
            <option value="IE">Ireland</option>
            <option value="LV">Latvia</option>
            <option value="LT">Lithuania</option>
            <option value="NO">Norway</option>
            <option value="SJ">Svalbard and Jan Mayen Islands</option>
            <option value="SE">Sweden</option>
            <option value="CH">Switzerland</option>
            <option value="TR">Turkey</option>
		</select>
	</div>
</div>

Form buttons

Use this component to help users submit their information.

Note: This section exists to show you how a form submit button should be marked up. Buttons are not part of this package. They are inherited from the brand context utilities.

<button type="submit" class="u-button u-button--primary">Submit</button>

FAQs

Last updated on 30 Jan 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc