buttons work right

darcs-hash:20080517170920-84dde-150c051a92f5af4189e55539d71c37b4f20e369d.gz
This commit is contained in:
Evan Prodromou 2008-05-17 13:09:20 -04:00
parent 179c91b921
commit ee0056e717
1 changed files with 4 additions and 4 deletions

View File

@ -124,12 +124,12 @@ class RegisterAction extends Action {
'id' => 'email')); 'id' => 'email'));
common_element('input', array('name' => 'submit', common_element('input', array('name' => 'submit',
'type' => 'submit', 'type' => 'submit',
'id' => 'submit'), 'id' => 'submit',
_t('Login')); 'value' => _t('Login')));
common_element('input', array('name' => 'cancel', common_element('input', array('name' => 'cancel',
'type' => 'button', 'type' => 'button',
'id' => 'cancel'), 'id' => 'cancel',
_t('Cancel')); 'value' => _t('Cancel')));
common_element_end('form'); common_element_end('form');
} }
} }