mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-02 09:49:09 -04:00
The state of of the user registration functionality
This commit is contained in:
34
modules/user/views/user.html.php
Normal file
34
modules/user/views/user.html.php
Normal 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>
|
||||
Reference in New Issue
Block a user