add a label for submit button

darcs-hash:20080520175906-84dde-3b4aec544d517b21344fa802ca00026c8362b573.gz
This commit is contained in:
Evan Prodromou 2008-05-20 13:59:06 -04:00
parent e80eef2f04
commit c3b0e7bf50
1 changed files with 3 additions and 1 deletions

View File

@ -218,10 +218,12 @@ function common_password($id, $label) {
function common_submit($id, $label) {
common_element_start('p');
common_element('label', NULL, ' ');
common_element('input', array('type' => 'submit',
'id' => $id,
'name' => $id,
'value' => $label));
'value' => $label,
'class' => 'button'));
common_element_end('p');
}