The state of of the user registration functionality

This commit is contained in:
Tim Almdal
2008-11-14 18:16:13 +00:00
parent d7745f2ad8
commit bd1ec2df1f
4 changed files with 77 additions and 29 deletions

View File

@@ -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>