Blame view

mobile/source/modules/users/tmpl/control_members/edit.html 1.54 KB
a1684257   Administrator   first commit
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  <div style="width:550px;height:230px;overflow:auto" id="conteiner">
  		<pre onclick="this.style.display='none'" class="form_error" id="message" ></pre>
  		
  		<form id="form_page" class="form" method="post" enctype="multipart/form-data" onsubmit="return false">
  		<input type="hidden" name="id" tal:attributes="value row/u_id|" />
  		<table align="center">
  			
  
  			<tr>
  				<td width="25%" class="info" >* ${M_USERS_FORM_LOGIN}</td>
  				<td valign="top"><input type="text" name="u_login" tal:attributes="value row/u_login|"  /></td>
  			</tr>
  			
  			
  			<tr>
  				<td width="15%" class="info" >* ${M_USERS_FORM_PASS}</td>
  				<td valign="top">
  				<input type="text" style="width:150px" name="u_pass"  /> 
  				<input type="text" style="width:145px" name="u_repass"   />
  				
  				
  				</td>
  			</tr>
  			
  			
  			<tr>
  				<td width="15%" class="info" >* ${M_USERS_FORM_MAIL}</td>
  				<td valign="top">
  				<input type="text" name="u_email" tal:attributes="value row/u_email|"  /> 
  				</td>
  			</tr>
  			
  			
  		
  			
  		
  			
  			
  			
  			
  			<tr>
  				<td width="15%" class="info" >${M_USERS_FORM_GROUPS}</td>
  				<td valign="top">
  					<select 
  						
  						tal:content="structure row/groups_list"
  						name="g_id" />
  				</td>
  			</tr>
  			
  		
  			
  			
  			
  			
  			
  			
  			<tr>
  				<td colspan="2" style="text-align:right">
  					<input type="button" onclick="table.save_page();" value="${SAVE}" />
  					<input type="button" onclick="wnd.close()" value="${CLOSE}" />
  				</td>
  				
  			</tr>
  		</table>
  		</form>
  </div>
  
  <div id="execute_js" tal:content="structure row/execute_js|"></div>