Sourcecode in User/edit.skin:
1: <form method="post" action="<% response.action %>">
2: <table border="0" cellspacing="0" cellpadding="3">
3: <tr>
4: <td class="small" nowrap="nowrap">Old password:</td>
5: <td nowrap="nowrap"><% input type="password" name="oldpwd" size="15" %></td>
6: </tr>
7: <tr>
8: <td class="small" nowrap="nowrap">New password:</td>
9: <td nowrap="nowrap"><% input type="password" name="newpwd1" size="15" %></td>
10: </tr>
11: <tr>
12: <td class="small" nowrap="nowrap">Confirm password:</td>
13: <td nowrap="nowrap"><% input type="password" name="newpwd2" size="15" %></td>
14: </tr>
15: <tr>
16: <td class="small" nowrap="nowrap">e-mail:</td>
17: <td><% user.email as="editor" size="35" %></td>
18: </tr>
19: <tr>
20: <td class="small" valign="top" nowrap="nowrap">e-mail is visible:</td>
21: <td><% user.publishemail as="editor" %><br /><span class="small">If you select this checkbox your e-mail address will be visible to site administrators.</span></td>
22: </tr>
23: <tr>
24: <td class="small" valign="top" nowrap="nowrap">Personal URL:</td>
25: <td><% user.url as="editor" size="35" %><br />
26: <span class="small">If you enter a URL or an e-mail address here, your username will appear as link next to your stories or comments.</span></td>
27: </tr>
28: <tr>
29: <td nowrap="nowrap"> </td>
30: <td nowrap="nowrap"><br /><% input type="submit" name="save" value="Save" %> <% input type="submit" name="cancel" value="Cancel" %></td>
31: </tr>
32: </table>
33: </form>
34:
|