mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-25 22:44:43 +00:00
26 lines
563 B
Markdown
26 lines
563 B
Markdown
|
|
---
|
||
|
|
layout: page
|
||
|
|
title: Custom forms
|
||
|
|
---
|
||
|
|
|
||
|
|
{% example html %}
|
||
|
|
<label class="c-input c-checkbox">
|
||
|
|
<input type="checkbox">
|
||
|
|
<span class="c-indicator"></span>
|
||
|
|
Check this custom checkbox
|
||
|
|
</label>
|
||
|
|
{% endexample %}
|
||
|
|
|
||
|
|
{% example html %}
|
||
|
|
<label class="c-input c-radio">
|
||
|
|
<input id="radio1" name="radio" type="radio">
|
||
|
|
<span class="c-indicator"></span>
|
||
|
|
Toggle this custom radio
|
||
|
|
</label>
|
||
|
|
<label class="c-input c-radio">
|
||
|
|
<input id="radio2" name="radio" type="radio">
|
||
|
|
<span class="c-indicator"></span>
|
||
|
|
Or toggle this other custom radio
|
||
|
|
</label>
|
||
|
|
{% endexample %}
|