Use the file upload component to help users select and upload one or more files.
There are two cases in which the file upload component can be used:
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.
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:
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"
}
.file-upload {
ul.inline, /// @deprecated since 4.0.0
.tag-list-wrapper {
margin-top: .8rem;
li {
margin-right: .4rem;
margin-bottom: .4rem;
}
}
.button {
margin-bottom: .8rem;
}
}