diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-14 18:16:13 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-14 18:16:13 +0000 |
commit | bd1ec2df1fbd0a642b7f981742558b2ee4f8b5ff (patch) | |
tree | 437882c2bb3c64b7bd303e3487aff855d239f7be /modules/user/views | |
parent | d7745f2ad871b8e5ac29428f74344dcb41f93b6d (diff) |
The state of of the user registration functionality
Diffstat (limited to 'modules/user/views')
-rw-r--r-- | modules/user/views/user.html.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/modules/user/views/user.html.php b/modules/user/views/user.html.php new file mode 100644 index 00000000..614645e5 --- /dev/null +++ b/modules/user/views/user.html.php @@ -0,0 +1,34 @@ +<? defined("SYSPATH") or die("No direct script access."); ?> +<form id="gUser" action="<?= url::site("user/dispatch/$user_id") ?>"> + <fieldset> + <legend><?= $action ?></legend> + <ul> + <li> + <label for="gUsername"><?= _("Username") ?></label> + <input type="text" id="gUsername" /> + <span id="gUsername_error" class="gStatus gError gDisplayNone"></span> + </li> + <li> + <label for="gPassword"><?= _("Password") ?></label> + <input type="password" id="gPassword" /> + <span id="gPassword_error" class="gStatus gError gDisplayNone"></span> + </li> + <li> + <label for="gPassword_confirm"><?= _("Confirm Password") ?></label> + <input type="password" id="gPassword_confirm" /> + </li> + <li> + <label for="gEmail"><?= _("Password") ?></label> + <input type="password" id="gEmail" /> + <span id="gEmail_error" class="gStatus gError gDisplayNone"></span> + </li> + <li> + <label for="gEmail_confirm"><?= _("Confirm Email") ?></label> + <input type="password" id="gEmaild_confirm" /> + </li> + <li> + <input type="submit" value="<?=$button_text?>" /> + </li> + </ul> + </fieldset> +</form> |