@utrecht/button-css
Version:
Button component for the Municipality of Utrecht based on the NL Design System architecture
23 lines (17 loc) • 453 B
Markdown
<!-- @license CC0-1.0 -->
# Geen koppeling met foutmelding bij een button
Niet:
```html
<p>
<button type="submit">Opslaan</button>
</p>
<p class="error">Je bent uitgelogd. Log opnieuw in om je wijzigingen op te slaan.</p>
```
Wel:
```html
<p>
<label for="upload">Bijlage:</label>
<input type="file" id="upload" aria-describedby="upload-description" />
</p>
<p id="upload-description" class="error">Je mag een JPG of een PDF uploaden.</p>
```