add common_password

darcs-hash:20080519131808-84dde-af9d0bf03a963f7b0bdaed3b973a38998f9e806e.gz
This commit is contained in:
Evan Prodromou
2008-05-19 09:18:08 -04:00
parent 3a2d17f9f6
commit cb32dad17b
2 changed files with 9 additions and 1 deletions

View File

@@ -179,6 +179,14 @@ function common_input($id, $label, $value=NULL) {
common_element('input', $attrs);
}
function common_password($id, $label) {
common_element('label', array('for' => $id), $label);
$attrs = array('name' => $id,
'type' => 'password',
'id' => $id);
common_element('input', $attrs);
}
# salted, hashed passwords are stored in the DB
function common_munge_password($id, $password) {