Skip to content

Commit

Permalink
Add date-form to composition for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
VirginiaDooley committed Nov 14, 2022
1 parent e1ce8fe commit e72f317
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions src-site/usage/composition.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,23 @@ By combining [Stacks]({{site.basedir}}/components/stack), [Grids]({{site.basedir
<button class="ds-button" type="submit">Log in</button>
</div>
</form>
<div class="ds-date">
<div class="form-group form-group-day">
<label for="day_0">Day</label>
<input type="number" name="date-date_0" value="12" label="Day" required="" id="id_date-date_0">
</div>
<div class="form-group form-group-month">
<label for="month_1">Month</label>
<input type="number" name="date-date_1" value="12" label="Month" required="" id="id_date-date_1">
</div>
<div class="form-group form-group-year">
<label for="year_2">Year</label>
<input type="number" name="date-date_2" value="2025" label="Year" required="" id="id_date-date_2">
</div>
</div>
</div>
</div>
</div>

</div>

0 comments on commit e72f317

Please sign in to comment.