Forms
Das Basis-Layout einer Gruppe von Eingabefeldern wird mit dem Grund-Markup bereitgestellt. Dieses ist immer zu verwenden und gibt eine grundlegende Formatierung und Ausrichtung der Elemente vor. Dieses Grund-Markup kann mit beliebigen Elementen aus den nachfolgenden Elementen gefüllt werden. (Beispielformulare)
The basic layout of a group of input fields is provided with the basic mark-up. It should always be used and specifies the basic formatting and alignment of the elements. This basic mark-up can be filled with any of the elements in the following elements. (Exampleforms)
Form elements
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField4459" class="form-label ">
Textfeld
</label>
<input class="form-control" id="myInputField4459" type="text" name="myInputField4459">
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="mySelect7292" class="form-label">
Select
</label>
<select class="form-control" id="mySelect7292" name="mySelect7292"
>
<option value="">Bitte wählen</option>
<option value="option1">Option1</option>
<option value="option2">Option2</option>
</select>
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="mySelect3000" class="form-label">
Multiselect
</label>
<select class="form-control" multiple id="mySelect3000" name="mySelect3000"
>
<option value="">Bitte wählen</option>
<option value="option1">Option1</option>
<option value="option2">Option2</option>
</select>
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group js-multi-select">
<label id="mylabel8494" class="form-label">JS Multiselect</label>
<!-- Trigger -->
<button type="button" class="multi-select__trigger" aria-expanded="false" aria-controls="mypanel8494" aria-labelledby="mylabel8494 mytext8494">
<span id="mytext8494" class="multi-select__text">Bitte wählen</span>
</button>
<!-- Text/Messages (i18n) -->
<div class="multi-select__messages" hidden>
<span data-role="placeholder">Bitte wählen</span>
<span data-role="selected">ausgewählt</span>
</div>
<!-- Dropdown Panel -->
<div class="multi-select__panel" id="mypanel8494" hidden>
<fieldset class="multi-select__options">
<legend class="aural">JS Multiselect auswählen</legend>
<label class="multi-select__option">
<input type="checkbox" name="myname8494[]" value="option1">Option 1</label>
<label class="multi-select__option">
<input type="checkbox" name="myname8494[]" value="option2">Option 2</label>
<label class="multi-select__option">
<input type="checkbox" name="myname8494[]" value="option3">Option 3</label>
</fieldset>
</div>
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField7337" class="form-label ">
Dateiupload
</label>
<input class="form-control" id="myInputField7337" type="file" name="myInputField7337">
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField6379" class="form-label ">
Time
</label>
<input class="form-control" id="myInputField6379" type="time" name="myInputField6379">
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField9510" class="form-label ">
Number
</label>
<input class="form-control" id="myInputField9510" type="number" name="myInputField9510">
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField4075" class="form-label ">
Url
</label>
<input class="form-control" id="myInputField4075" type="url" name="myInputField4075">
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField9448" class="form-label ">
Datepicker native (input[type=date])
</label>
<input class="form-control" id="myInputField9448" type="date" name="myInputField9448">
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField1951" class="form-label ">
Datepicker with flatpickr.js (input.datepicker)
</label>
<input class="form-control datepicker" id="myInputField1951" type="text" name="myInputField1951">
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField8944" class="form-label ">
Readonly
</label>
<input class="form-control" readonly id="myInputField8944" type="text" value="Dieser Text ist nicht zu ändern" name="myInputField8944">
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField8446" class="form-label ">
Required <span class="icon-required" aria-hidden="true">*</span><span class="aural">(Pflichtfeld)</span>
</label>
<input class="form-control" required aria-required="true" id="myInputField8446" type="text" name="myInputField8446">
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField7922" class="form-label ">
Input as plaintext
</label>
<input class="form-control-plaintext" readonly id="myInputField7922" type="text" value="Dieser Wert sieht aus wie Plaintext" name="myInputField7922">
</div>
</form>
Checkboxes und Radio buttons
Standardmäßig werden Checkboxen und Radios untereinander angezeigt und in der Wrapper-Klasse .form-check gekapselt. Das Inputfeld hat die Klasse .form-check-input. Das Label hat die Klasse .form-check-label.
Barrierefreiheit: Bitte beachten Sie bei Eingabegruppen die Verwendung von fieldset und legend. Siehe auch: Barrierefreies Webdesign - Mit FIELDSET und LEGEND zu beschreibenden Formularbeschriftungen
<form class="form--base panel--heavy">
<fieldset >
<legend >
Checkboxes legend
</legend>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="myCheckbox4684" name="myCheckbox4684">
<label class="form-check-label" for="myCheckbox4684">Checkbox label</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="myCheckbox3206" name="myCheckbox3206">
<label class="form-check-label" for="myCheckbox3206">Checkbox label</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" disabled id="myCheckbox8294" name="myCheckbox8294">
<label class="form-check-label" for="myCheckbox8294">Disabled checkbox label</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="myCheckbox6836" name="myCheckbox6836">
<label class="form-check-label" for="myCheckbox6836">Checkbox label with a lot of text Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry.</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="myCheckbox3093" name="myCheckbox3093">
<label class="form-check-label" for="myCheckbox3093">Checkbox label</label>
</div>
</fieldset>
</form>
<form class="form--base panel--heavy">
<fieldset >
<legend >
Radio button legend
</legend>
<div class="form-check">
<input class="form-check-input" type="radio" id="myCheckbox312" name="exampleRadios">
<label class="form-check-label" for="myCheckbox312">Radio label</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" id="myCheckbox4295" name="exampleRadios">
<label class="form-check-label" for="myCheckbox4295">Radio label</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" disabled id="myCheckbox4755" name="exampleRadios">
<label class="form-check-label" for="myCheckbox4755">Disabled radio label</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" id="myCheckbox8753" name="exampleRadios">
<label class="form-check-label" for="myCheckbox8753">Radio label with a lot of text Philosophy is considered a science but it is difficult to say, when one has to compare with an ordinary science, for example biology, or chemistry.</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" id="myCheckbox8301" name="exampleRadios">
<label class="form-check-label" for="myCheckbox8301">Radio label</label>
</div>
</fieldset>
</form>
Inline Checkboxen: Checkboxen und Radios können mit der Klasse .form-check-inline horizontal gruppiert werden.
<form class="form--base panel--heavy">
<fieldset >
<legend >
Inline checkboxes legend
</legend>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="myCheckbox4831" name="myCheckbox4831">
<label class="form-check-label" for="myCheckbox4831">Checkbox label</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="myCheckbox3336" name="myCheckbox3336">
<label class="form-check-label" for="myCheckbox3336">Checkbox label</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" disabled id="myCheckbox9780" name="myCheckbox9780">
<label class="form-check-label" for="myCheckbox9780">Disabled checkbox label</label>
</div>
</fieldset>
</form>
<form class="form--base panel--heavy">
<fieldset >
<legend >
Inline radio buttons legend
</legend>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" id="myCheckbox2087" name="exampleRadios2">
<label class="form-check-label" for="myCheckbox2087">Radio button label</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" id="myCheckbox6710" name="exampleRadios2">
<label class="form-check-label" for="myCheckbox6710">Radio button label</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" disabled id="myCheckbox2942" name="exampleRadios2">
<label class="form-check-label" for="myCheckbox2942">Disabled Radio button label</label>
</div>
</fieldset>
</form>
Toggle switch
<form class="form--base panel--heavy">
<fieldset >
<legend >
Settings
</legend>
<div class="toggle-switch form-check">
<input type="checkbox" name="toggle-switch-input-1813" id="toggle-switch-1813" aria-label="Toggle Switch" class="toggle-switch__input" checked="checked">
<span class="toggle-switch__display" hidden>
<i class="bicon bicon-check toggle-switch__icon toggle-switch__icon--on" aria-hidden="true"></i>
<i class="bicon bicon-times toggle-switch__icon toggle-switch__icon--off" aria-hidden="true"></i>
</span>
<label class="toggle-switch__label" for="toggle-switch-1813">Receive Notifications</label>
</div>
<div class="toggle-switch form-check">
<input type="checkbox" name="toggle-switch-input-6840" id="toggle-switch-6840" aria-label="Toggle Switch" class="toggle-switch__input">
<span class="toggle-switch__display" hidden>
<i class="bicon bicon-check toggle-switch__icon toggle-switch__icon--on" aria-hidden="true"></i>
<i class="bicon bicon-times toggle-switch__icon toggle-switch__icon--off" aria-hidden="true"></i>
</span>
<label class="toggle-switch__label" for="toggle-switch-6840">Receive SMS</label>
</div>
<div class="toggle-switch form-check">
<input type="checkbox" name="toggle-switch-input-5228" id="toggle-switch-5228" aria-label="Toggle Switch" class="toggle-switch__input" disabled="disabled">
<span class="toggle-switch__display" hidden>
<i class="bicon bicon-check toggle-switch__icon toggle-switch__icon--on" aria-hidden="true"></i>
<i class="bicon bicon-times toggle-switch__icon toggle-switch__icon--off" aria-hidden="true"></i>
</span>
<label class="toggle-switch__label" for="toggle-switch-5228">Receive call (disabled)</label>
</div>
</fieldset>
</form>
Hilfetexte
Der Hilfetext hat die Klasse .formgroup__help. Standardmäßig wird er unterhalb des Eingabefeldes angezeigt. Für Screenreader wird das Eingabeelement über das Attribut aria-describedby mit dem id des Beschreibungstexte verknüpft.
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField5496" class="form-label ">
Passwort
</label>
<input class="form-control" id="myInputField5496" type="password" aria-describedby="myInputField5496Help " placeholder="Geben Sie hier Ihr passwort ein" name="myInputField5496">
<small id="myInputField5496Help" class="formgroup__help">We never share your email with anyone else.</small>
</div>
</form>
Validierung
Über die Klassen .is-invalid und .is-valid können Elemente farblich gekennzeichnet werden.
Ein zusätzlicher Fehlertext mit der Klasse .message.message-error bzw. .message.message-success wird unterhalb des invaliden Elementes angezeigt.
<form class="form--base panel--heavy">
<div class="form-group">
<label for="myInputField3716" class="form-label ">
Textfeld
</label>
<input class="form-control is-invalid" id="myInputField3716" type="text" aria-invalid="true" aria-describedby="myInputField3716Invalid " name="myInputField3716">
<p id="myInputField3716Invalid" class="message message--error">Bitte füllen Sie dieses Feld aus.</p>
</div>
</form>
<form class="form--base panel--heavy">
<div class="form-check">
<input class="form-check-input is-invalid" type="checkbox" aria-invalid="true" aria-describedby="myCheckbox915Invalid " id="myCheckbox915" name="myCheckbox915">
<label class="form-check-label" for="myCheckbox915">Checkbox</label>
<p id="myCheckbox915Invalid" class="message message--error">Bitte füllen Sie dieses Feld aus.</p>
</div>
</form>
<form class="form--base panel--heavy">
<fieldset >
<legend >
Wie zufrieden sind Sie mit dieser Frage?
</legend>
<div class="form-check form-check-inline">
<input class="form-check-input is-invalid" type="radio" aria-invalid="true" aria-describedby="myFieldset1684Invalid" id="myCheckbox2224" name="exampleRadios">
<label class="form-check-label" for="myCheckbox2224">Sehr zufrieden</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input is-invalid" type="radio" aria-invalid="true" aria-describedby="myFieldset1684Invalid" id="myCheckbox2196" name="exampleRadios">
<label class="form-check-label" for="myCheckbox2196">Ist mir egal</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input is-invalid" type="radio" aria-invalid="true" aria-describedby="myFieldset1684Invalid" id="myCheckbox9042" name="exampleRadios">
<label class="form-check-label" for="myCheckbox9042">Weniger zufrieden</label>
</div>
<p class="message message--error" id="myFieldset1684Invalid">Bitte füllen Sie dieses Feld aus.</p>
</fieldset>
</form>
Horizontale Elemente
Horizontale Darstellung von Elementen mit .form-group--inline.
<form class="form--base panel--heavy">
<div class="form-group form-group form-group--inline"> <div class="form-group">
<label for="myInputField3626" class="form-label aural">
Textfeld
</label>
<input class="form-control" id="myInputField3626" type="text" name="myInputField3626">
</div>
<div class="form-group">
<label for="mySelect1655" class="form-label aural">
Auswahlliste
</label>
<select class="form-control" id="mySelect1655" name="mySelect1655"
>
<option value="">Bitte wählen</option>
<option value="option1">Option1</option>
<option value="option2">Option2</option>
</select>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="myCheckbox2892" name="myCheckbox2892">
<label class="form-check-label" for="myCheckbox2892">Checkbox</label>
</div>
<button type="submit" class="button">Button</button>
</div></form>
.form-group--inline .fullspace .align-bottom
<form class="form--base panel--heavy">
<div class="form-group form-group form-group--inline fullspace align-bottom"> <div class="form-group">
<label for="myInputField5682" class="form-label ">
Textfeld
</label>
<input class="form-control" id="myInputField5682" type="text" name="myInputField5682">
</div>
<div class="form-group">
<label for="myInputField8160" class="form-label ">
Textfeld
</label>
<input class="form-control" id="myInputField8160" type="text" name="myInputField8160">
</div>
<button type="submit" class="button">Button</button>
</div></form>
Example 1
<form class="form--base panel--heavy">
<p class="form-description">
Hinweis: Pflichfelder sind mit einem <span class="icon-required" aria-hidden="true">*</span><span class="aural">(Pflichtfeld)</span> markiert.
</p>
<div class="form-group">
<label for="myInputField9223" class="form-label ">
Input <span class="icon-required" aria-hidden="true">*</span><span class="aural">(Pflichtfeld)</span>
</label>
<input class="form-control" required aria-required="true" id="myInputField9223" type="text" aria-describedby="myInputField9223Help " name="myInputField9223">
<small id="myInputField9223Help" class="formgroup__help">Helptext</small>
</div>
<div class="form-group">
<label for="mySelect9376" class="form-label">
Select <span class="icon-required" aria-hidden="true">*</span><span class="aural">(Pflichtfeld)</span>
</label>
<select class="form-control" required aria-required="true" id="mySelect9376" aria-describedby="mySelect9376Help " name="mySelect9376"
>
<option value="">Bitte wählen</option>
<option value="option1">Option1</option>
<option value="option2">Option2</option>
</select>
<small id="mySelect9376Help" class="formgroup__help">Helptext</small>
</div>
<fieldset >
<legend >
Frage
</legend>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="myCheckbox2810" name="myCheckbox2810">
<label class="form-check-label" for="myCheckbox2810">Antwort 1</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="myCheckbox2409" name="myCheckbox2409">
<label class="form-check-label" for="myCheckbox2409">Antwort 2</label>
</div>
</fieldset>
<fieldset >
<legend >
Frage
</legend>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" id="myCheckbox631" name="exampleRadios1">
<label class="form-check-label" for="myCheckbox631">Ja</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" id="myCheckbox9145" name="exampleRadios1">
<label class="form-check-label" for="myCheckbox9145">Nein</label>
</div>
</fieldset>
<div class="form-actions"> <div class="form-actions__left">
<a href="#randomtarget3282" class="link--back">Back</a>
</div>
<div class="form-actions__right">
<button type="submit" class="button">Action</button>
</div>
</div>
<div class="form__footer panel__footer panel--heavy">
<p>Optionaler Footer</p>
</div>
</form>
Example 2
Dieser Bereich ist geschützt. Bitte geben Sie Ihren Benutzernamen und Ihr Passwort ein.
<form class="form--base panel--heavy">
<p class="form-description">
Hinweis: Pflichfelder sind mit einem <span class="icon-required" aria-hidden="true">*</span><span class="aural">(Pflichtfeld)</span> markiert.
</p>
<div class="form-group">
<label for="myInputField2900" class="form-label ">
Benutzername <span class="icon-required" aria-hidden="true">*</span><span class="aural">(Pflichtfeld)</span>
</label>
<input class="form-control" required aria-required="true" id="myInputField2900" type="text" name="myInputField2900">
</div>
<div class="form-group">
<label for="myInputField9113" class="form-label ">
Passwort <span class="icon-required" aria-hidden="true">*</span><span class="aural">(Pflichtfeld)</span>
</label>
<input class="form-control" required aria-required="true" id="myInputField9113" type="password" name="myInputField9113">
</div>
<div class="form-actions">
<button type="submit" class="button">Anmelden</button>
</div>
</form>