taron133
2020-10-26 aa8d874c8a3287d41d26566ae32b6ed8d4557ff9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<div class="REG_main" align="center">
 
 <div class="NDT_HEAD_row" align="left">
 <div style="display:inline;margin-left:260px;" align="left">
  Editing of the data of the user:
  </div>
  <div style="display:inline;margin-left:100px;" align="right">
  Allowable symbols: 
  </div>
 </div>
 
 <form action="index.php?form={$Form}" method="post">
 <table summary="Editing of the data of the user">
 {if $HasRegErrors}
 <tr><td colspan="2" width="100%">
 <ul>
  {section name=sec loop=$RegErrors}
    <li type="square" class="Errors">{$RegErrors[sec]}</li>
  {/section}
 </ul>
 </td></tr>
 {/if}
 
 <tr><td width="30%">login:</td><td>{$reg_login}</td></tr>
 <tr><td width="20%">password:</td><td><input type="password" name="reg_pass" />Latin letters, numbers</td></tr>
 <tr><td width="20%">confirm password:</td><td><input type="password" name="reg_pass2" /></td></tr>
 
 
 <tr>
   <td width="20%" align="center" colspan="2" style="border-top:solid 2px;">
  <input type="submit" style="color:#52B;width:10em;margin-top:10px;" name="user_edit_sub" value="{$cgrid_save}" />
  <a href="index.php?state=1"><input type="submit" style="color:#52B;width:10em;margin-top:10px;" name="user_cancel_edit" value="{$cgrid_cancel}" /></a>
 </td></tr> 
 </table>
 </form>
</div>