Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@springernature/springernature-forms
Advanced tools
Springer Nature branded styles for text, checkbox, radio button, textarea and select inputs
Springer Nature branded styles for text, checkbox, radio button, textarea and select inputs.
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';
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>
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 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 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>
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>
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>
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>
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>
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>
Use this component at the top of a page to summarise any errors a user has made. There are two types of errors:
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>
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>
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
Springer Nature branded styles for text, checkbox, radio button, textarea and select inputs
We found that @springernature/springernature-forms demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 open source maintainers collaborating on the project.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.