2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-27 14:46:01 +03:00

add custom forms, stub out examples for radios and checkboxes

This commit is contained in:
Mark Otto
2014-12-24 04:13:23 -08:00
parent e1bb907050
commit 18e08e777b
14 changed files with 1091 additions and 22 deletions
+25
View File
@@ -0,0 +1,25 @@
---
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 %}