I agree to the <ahref="#">terms and conditions</a>
</label>
{% endcapture %}
{% capture checkbox_disabled_example %}
<labelclass="checkbox"disabled>
<inputtype="checkbox"disabled>
Save my preferences
</label>
{% endcapture %}
{% include subnav-form.html %}
<sectionclass="section">
<divclass="container">
<h1class="title">Checkbox</h1>
<h2class="subtitle">
The 2-state <strong>checkbox</strong> in its native format
</h2>
<hr>
<divclass="content">
<p>
The <code>checkbox</code> class is a simple wrapper around the <code><input type="checkbox"></code> HTML element. It is intentionally not styled, to preserve cross-browser compatibility and the user experience.
</p>
</div>
<divclass="columns">
<divclass="column is-half">
{{checkbox_example}}
</div>
<divclass="column is-half highlight-full">
{% highlight html %}{{checkbox_example}}{% endhighlight %}
</div>
</div>
<divclass="content">
<p>
You can add <strong>links</strong> to your checkbox, or even <strong>disable</strong> it.
</p>
</div>
<divclass="columns">
<divclass="column is-half">
{{checkbox_link_example}}
</div>
<divclass="column is-half highlight-full">
{% highlight html %}{{checkbox_link_example}}{% endhighlight %}
</div>
</div>
<divclass="columns">
<divclass="column is-half">
{{checkbox_disabled_example}}
</div>
<divclass="column is-half highlight-full">
{% highlight html %}{{checkbox_disabled_example}}{% endhighlight %}