Sourcecode in MemberMgr/register.skin:
1: <form method="post" action="<% response.action %>">
2: <table border="0" cellspacing="0" cellpadding="3">
3: <tr>
4: <td class="small" nowrap="nowrap">Username:</td>
5: <td nowrap="nowrap"><% input type="text" name="name" %></td>
6: </tr>
7: <tr>
8: <td class="small" nowrap="nowrap">Password:</td>
9: <td nowrap="nowrap"><% input type="password" name="password1" %></td>
10: </tr>
11: <tr>
12: <td class="small" nowrap="nowrap">Confirm password:</td>
13: <td nowrap="nowrap"><% input type="password" name="password2" %></td>
14: </tr>
15: <tr>
16: <td class="small" valign="top" nowrap="nowrap">e-mail:</td>
17: <td><% input type="text" name="email" %></td>
18: </tr>
19: <tr>
20: <td class="small" valign="top" nowrap="nowrap">e-mail is visible:</td>
21: <td><span class="small"><% input type="checkbox" name="publishemail" %><br />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><% input type="text" name="url" %><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="register" value="Register" %> <% input type="submit" name="cancel" value="Cancel" %></td>
31: </tr>
32: </table>
33: </form>
34:
|