HTML-FormFu-ExtJS
view release on metacpan or search on metacpan
examples/html/radio_checkbox-html.html view on Meta::CPAN
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>radio_checkbox</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css" media="all">
@import "../css/vertically-aligned.css";
</style>
<!--[if IE]>
<style type="text/css" media="all">
@import "../css/vertically-aligned-ie.css";
</style>
<![endif]-->
</head>
<body>
<a href="../forms/radio_checkbox.yml">Form config file</a><br/><br/>
<form action="" method="post">
<div class="radio label">
<label>test</label>
<input name="foo" type="radio" value="1" />
</div>
<div class="checkbox label">
<label>Checked</label>
<input name="foo2" type="checkbox" value="1" checked="checked" />
</div>
<div class="checkbox label">
<label>Unchecked</label>
<input name="foo3" type="checkbox" value="1" />
</div>
</form>
</body>
</html>
( run in 1.129 second using v1.01-cache-2.11-cpan-411bb0df24b )