File Upload: Default

File upload

When to use this component

Use the file upload component to help users select and upload one or more files.

How it works

There are two cases in which the file upload component can be used:

  • To upload one file only (default)
  • To upload one or more files

Upload one file only (default)

When the user should only be able to select and upload one file, the file upload component can be used as is. See the “default” example.

Upload one or more files

When the user should be able to select and upload one or more files, the file upload component is placed in a fieldset.

There are two ways of using and presenting the file upload component in a fieldset to upload one or more files:

  • A fieldset with one single file upload component with the option to upload one or more files. See the “multiple” example.
  • A fieldset with multiple file upload components that are stacked. The file upload components can be shown immediatelly or can be shown one by one where the user is in control and actively chooses to select and upload one file more using a button that adds a file upload component. See the “stacked” example.

Usage, behavior, layout and validation

The file upload component is a form element that should always be used in a form. For a description of the usage, the behavior, the layout and validation of form elements, see the form component documentation.

<section class="file-upload">
  <div class="form-item">
    {% include '@label' with {
      "label": label,
      "for": id ~ '--' ~ _self.name,
    } %}
    <div class="form-columns">
      <div class="form-item-column">
        {% render '@file' with {
          "id": id ~ '--' ~ _self.name,
          "name": name ~ '--' ~ _self.name|default(id ~ '--' ~ _self.name),
        } %}
      </div>
      <div class="form-item-column"></div>
    </div>
  </div>
</section>
<section class="file-upload">
    <div class="form-item">
        <label for="file-upload--default">Attachment
        </label>
        <div class="form-columns">
            <div class="form-item-column">
                <div class="file" data-file="No file chosen.">

                    <input type="file" id="file-upload--default" aria-describedby="file-upload--default-description" name="--default" />

                    <span id="file-upload--default-description" class="file__button">Select your files here to upload</span>
                </div>

                <span class="help-text">Allowed file formats: jpg, jpeg, png and gif. Maximum file size: 2 MB. Images must be larger than 744x465 pixels.</span>
            </div>
            <div class="form-item-column"></div>
        </div>
    </div>
</section>
{
  "id": "file-upload",
  "label": "Attachment"
}
  • Content:
    .file-upload {
    
      ul.inline {
        margin-top: .8rem;
    
        li {
          margin-right: .4rem;
          margin-bottom: .4rem;
        }
      }
    
      .button {
        margin-bottom: .8rem;
      }
    }
    
  • URL: /components/raw/file-upload/_file-upload.scss
  • Filesystem Path: components/31-molecules/file-upload/_file-upload.scss
  • Size: 173 Bytes