+ 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
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) {