Skip to content
Snippets Groups Projects
Select Git revision
  • 031a68d017812b92d6b2a7419e10ab2858173b84
  • main default protected
  • cf2025
  • cf2024
  • cf2023-euro
  • cf2023-offline
6 results

App.test.js

Blame
  • field.mustache 465 B
    <div class="form-field {{# error }}form-field--error{{/ error }} {{ classes }}">
      <label class="form-field__label" for="field">{{ label }}{{^ label }}{{ form.label }}{{/ label }}</label>
      <div class="form-field__wrapper form-field__wrapper--shadowed">
        {{> atoms-text-input }}
      </div>
      {{# error }}
        <div class="form-field__error">{{ error }}</div>
      {{/ error }}
      {{# help }}
        <div class="form-field__help-text">{{ help }}</div>
      {{/ help }}
    </div>