summaryrefslogtreecommitdiff
path: root/modules/user/controllers/users.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-10-27 12:23:48 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-10-27 12:23:48 -0700
commit1347a300509b2ab3083bb88193987c18b33187ad (patch)
tree739a29a66185b9cbc1263c66434c7cba3b467599 /modules/user/controllers/users.php
parent156a99beef968a22167502bb6389b4df7526feb0 (diff)
Add a password strength meter.
Diffstat (limited to 'modules/user/controllers/users.php')
-rw-r--r--modules/user/controllers/users.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/user/controllers/users.php b/modules/user/controllers/users.php
index 3507ec6d..7bcc74d7 100644
--- a/modules/user/controllers/users.php
+++ b/modules/user/controllers/users.php
@@ -63,7 +63,9 @@ class Users_Controller extends Controller {
access::forbidden();
}
- print $this->_get_edit_form($user);
+ $v = new View("user_form.html");
+ $v->form = $this->_get_edit_form($user);
+ print $v;
}
private function _get_edit_form($user) {