1 | <?php $this->_tpl_include('ucp_header.html'); ?>
|
---|
2 |
|
---|
3 | <table class="tablebg" width="100%" cellspacing="1">
|
---|
4 | <tr>
|
---|
5 | <th colspan="2" valign="middle"><?php echo ((isset($this->_rootref['L_TITLE'])) ? $this->_rootref['L_TITLE'] : ((isset($user->lang['TITLE'])) ? $user->lang['TITLE'] : '{ TITLE }')); ?></th>
|
---|
6 | </tr>
|
---|
7 | <?php if ($this->_rootref['S_FORCE_PASSWORD']) { ?>
|
---|
8 | <tr>
|
---|
9 | <td class="row3" colspan="2" align="center"><span class="gensmall"><?php echo ((isset($this->_rootref['L_FORCE_PASSWORD_EXPLAIN'])) ? $this->_rootref['L_FORCE_PASSWORD_EXPLAIN'] : ((isset($user->lang['FORCE_PASSWORD_EXPLAIN'])) ? $user->lang['FORCE_PASSWORD_EXPLAIN'] : '{ FORCE_PASSWORD_EXPLAIN }')); ?></span></td>
|
---|
10 | </tr>
|
---|
11 | <?php } if ($this->_rootref['ERROR']) { ?>
|
---|
12 | <tr>
|
---|
13 | <td class="row3" colspan="2" align="center"><span class="gensmall error"><?php echo (isset($this->_rootref['ERROR'])) ? $this->_rootref['ERROR'] : ''; ?></span></td>
|
---|
14 | </tr>
|
---|
15 | <?php } ?>
|
---|
16 | <tr>
|
---|
17 | <td class="row1" width="35%"><b class="genmed"><?php echo ((isset($this->_rootref['L_USERNAME'])) ? $this->_rootref['L_USERNAME'] : ((isset($user->lang['USERNAME'])) ? $user->lang['USERNAME'] : '{ USERNAME }')); ?>: </b><br /><span class="gensmall"><?php echo ((isset($this->_rootref['L_USERNAME_EXPLAIN'])) ? $this->_rootref['L_USERNAME_EXPLAIN'] : ((isset($user->lang['USERNAME_EXPLAIN'])) ? $user->lang['USERNAME_EXPLAIN'] : '{ USERNAME_EXPLAIN }')); ?></span></td>
|
---|
18 | <td class="row2"><?php if ($this->_rootref['S_CHANGE_USERNAME']) { ?><input type="text" class="post" name="username" size="30" value="<?php echo (isset($this->_rootref['USERNAME'])) ? $this->_rootref['USERNAME'] : ''; ?>" /><?php } else { ?><b class="gen"><?php echo (isset($this->_rootref['USERNAME'])) ? $this->_rootref['USERNAME'] : ''; ?></b><?php } ?></td>
|
---|
19 | </tr>
|
---|
20 | <tr>
|
---|
21 | <td class="row1" width="35%"><b class="genmed"><?php echo ((isset($this->_rootref['L_EMAIL_ADDRESS'])) ? $this->_rootref['L_EMAIL_ADDRESS'] : ((isset($user->lang['EMAIL_ADDRESS'])) ? $user->lang['EMAIL_ADDRESS'] : '{ EMAIL_ADDRESS }')); ?>: </b></td>
|
---|
22 | <td class="row2"><?php if ($this->_rootref['S_CHANGE_EMAIL']) { ?><input type="text" class="post" name="email" size="30" maxlength="100" value="<?php echo (isset($this->_rootref['EMAIL'])) ? $this->_rootref['EMAIL'] : ''; ?>" /><?php } else { ?><b class="gen"><?php echo (isset($this->_rootref['EMAIL'])) ? $this->_rootref['EMAIL'] : ''; ?></b><?php } ?></td>
|
---|
23 | </tr>
|
---|
24 | <?php if ($this->_rootref['S_CHANGE_EMAIL']) { ?>
|
---|
25 | <tr>
|
---|
26 | <td class="row1" width="35%"><b class="genmed"><?php echo ((isset($this->_rootref['L_CONFIRM_EMAIL'])) ? $this->_rootref['L_CONFIRM_EMAIL'] : ((isset($user->lang['CONFIRM_EMAIL'])) ? $user->lang['CONFIRM_EMAIL'] : '{ CONFIRM_EMAIL }')); ?>: </b><br /><span class="gensmall"><?php echo ((isset($this->_rootref['L_CONFIRM_EMAIL_EXPLAIN'])) ? $this->_rootref['L_CONFIRM_EMAIL_EXPLAIN'] : ((isset($user->lang['CONFIRM_EMAIL_EXPLAIN'])) ? $user->lang['CONFIRM_EMAIL_EXPLAIN'] : '{ CONFIRM_EMAIL_EXPLAIN }')); ?></span></td>
|
---|
27 | <td class="row2"><input type="text" class="post" name="email_confirm" size="30" maxlength="100" value="<?php echo (isset($this->_rootref['CONFIRM_EMAIL'])) ? $this->_rootref['CONFIRM_EMAIL'] : ''; ?>" /></td>
|
---|
28 | </tr>
|
---|
29 | <?php } if ($this->_rootref['S_CHANGE_PASSWORD']) { ?>
|
---|
30 | <tr>
|
---|
31 | <td class="row1" width="35%"><b class="genmed"><?php echo ((isset($this->_rootref['L_NEW_PASSWORD'])) ? $this->_rootref['L_NEW_PASSWORD'] : ((isset($user->lang['NEW_PASSWORD'])) ? $user->lang['NEW_PASSWORD'] : '{ NEW_PASSWORD }')); ?>: </b><br /><span class="gensmall"><?php echo ((isset($this->_rootref['L_CHANGE_PASSWORD_EXPLAIN'])) ? $this->_rootref['L_CHANGE_PASSWORD_EXPLAIN'] : ((isset($user->lang['CHANGE_PASSWORD_EXPLAIN'])) ? $user->lang['CHANGE_PASSWORD_EXPLAIN'] : '{ CHANGE_PASSWORD_EXPLAIN }')); ?></span></td>
|
---|
32 | <td class="row2"><input type="password" class="post" name="new_password" size="30" maxlength="255" value="<?php echo (isset($this->_rootref['NEW_PASSWORD'])) ? $this->_rootref['NEW_PASSWORD'] : ''; ?>" /></td>
|
---|
33 | </tr>
|
---|
34 | <tr>
|
---|
35 | <td class="row1" width="35%"><b class="genmed"><?php echo ((isset($this->_rootref['L_CONFIRM_PASSWORD'])) ? $this->_rootref['L_CONFIRM_PASSWORD'] : ((isset($user->lang['CONFIRM_PASSWORD'])) ? $user->lang['CONFIRM_PASSWORD'] : '{ CONFIRM_PASSWORD }')); ?>: </b><br /><span class="gensmall"><?php echo ((isset($this->_rootref['L_CONFIRM_PASSWORD_EXPLAIN'])) ? $this->_rootref['L_CONFIRM_PASSWORD_EXPLAIN'] : ((isset($user->lang['CONFIRM_PASSWORD_EXPLAIN'])) ? $user->lang['CONFIRM_PASSWORD_EXPLAIN'] : '{ CONFIRM_PASSWORD_EXPLAIN }')); ?></span></td>
|
---|
36 | <td class="row2"><input type="password" class="post" name="password_confirm" size="30" maxlength="255" value="<?php echo (isset($this->_rootref['PASSWORD_CONFIRM'])) ? $this->_rootref['PASSWORD_CONFIRM'] : ''; ?>" /></td>
|
---|
37 | </tr>
|
---|
38 | <?php } ?>
|
---|
39 | <tr>
|
---|
40 | <th colspan="2"><?php echo ((isset($this->_rootref['L_CONFIRM_CHANGES'])) ? $this->_rootref['L_CONFIRM_CHANGES'] : ((isset($user->lang['CONFIRM_CHANGES'])) ? $user->lang['CONFIRM_CHANGES'] : '{ CONFIRM_CHANGES }')); ?></th>
|
---|
41 | </tr>
|
---|
42 | <tr>
|
---|
43 | <td class="row1" width="35%"><b class="genmed"><?php echo ((isset($this->_rootref['L_CURRENT_PASSWORD'])) ? $this->_rootref['L_CURRENT_PASSWORD'] : ((isset($user->lang['CURRENT_PASSWORD'])) ? $user->lang['CURRENT_PASSWORD'] : '{ CURRENT_PASSWORD }')); ?>: </b><br /><span class="gensmall"><?php echo ((isset($this->_rootref['L_CURRENT_PASSWORD_EXPLAIN'])) ? $this->_rootref['L_CURRENT_PASSWORD_EXPLAIN'] : ((isset($user->lang['CURRENT_PASSWORD_EXPLAIN'])) ? $user->lang['CURRENT_PASSWORD_EXPLAIN'] : '{ CURRENT_PASSWORD_EXPLAIN }')); ?></span></td>
|
---|
44 | <td class="row2"><input type="password" class="post" name="cur_password" size="30" maxlength="255" value="<?php echo (isset($this->_rootref['CUR_PASSWORD'])) ? $this->_rootref['CUR_PASSWORD'] : ''; ?>" /></td>
|
---|
45 | </tr>
|
---|
46 | <tr>
|
---|
47 | <td class="cat" colspan="2" align="center"><?php echo (isset($this->_rootref['S_HIDDEN_FIELDS'])) ? $this->_rootref['S_HIDDEN_FIELDS'] : ''; ?><input class="btnmain" type="submit" name="submit" value="<?php echo ((isset($this->_rootref['L_SUBMIT'])) ? $this->_rootref['L_SUBMIT'] : ((isset($user->lang['SUBMIT'])) ? $user->lang['SUBMIT'] : '{ SUBMIT }')); ?>" /> <input class="btnlite" type="reset" value="<?php echo ((isset($this->_rootref['L_RESET'])) ? $this->_rootref['L_RESET'] : ((isset($user->lang['RESET'])) ? $user->lang['RESET'] : '{ RESET }')); ?>" name="reset" /></td>
|
---|
48 | </tr>
|
---|
49 | </table>
|
---|
50 |
|
---|
51 | <?php $this->_tpl_include('ucp_footer.html'); ?>
|
---|