diff options
-rw-r--r-- | doc/TODO | 2 | ||||
-rw-r--r-- | lib/common.php | 8 |
2 files changed, 9 insertions, 1 deletions
@@ -26,7 +26,7 @@ + configuration system ($config) + release 0.1 - doc action -- default to doc, title = main +- default to public stream - default avatar - default HTML type - set Content-Type diff --git a/lib/common.php b/lib/common.php index 7379026f4..38efe3403 100644 --- a/lib/common.php +++ b/lib/common.php @@ -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) { |