common_element('label', array('for' => $id), $label);
$attrs = array('name' => $id,
'type' => 'text',
+ 'class' => 'input_text',
'id' => $id);
if ($value) {
$attrs['value'] = htmlspecialchars($value);
common_element_start('p');
$attrs = array('name' => $id,
'type' => 'checkbox',
+ 'class' => 'checkbox',
'id' => $id);
if ($value) {
$attrs['value'] = htmlspecialchars($value);
common_element('label', array('for' => $id), $label);
$attrs = array('name' => $id,
'type' => 'password',
+ 'class' => 'password',
'id' => $id);
common_element('input', $attrs);
if ($instructions) {