root/releases/0.6rc2/lms/join.html

Revision 269, 1.4 kB (checked in by ben, 3 years ago)

--

  • Property svn:eol-style set to native
Line 
1 <form action="join.php" method="post">
2 <input type="hidden" name="mode" value="join" />
3     <table class="lmssignup">
4         <tr valign="top">
5             <td><?php echo gettext('Username'); ?></td>
6             <td><input type="text" name="username" value="<?php echo $u->username; ?>" /></td>
7             <td rowspan="6" valign="top"><?php
8             echo '<b>'.gettext('Create an account with elgg.').'</b><br />';
9             echo gettext('The URL of your profile page will be ').$CFG->wwwroot.'username<br />';
10             echo gettext('This account will not expire when you stop being affiliated with your institution');
11 ?></td>
12         </tr>
13         <tr>
14             <td><?php echo gettext('Fullname'); ?></td>
15             <td><input type="text" name="name" value="<?php echo $u->name; ?>" /></td>
16         </tr>
17         <tr>
18             <td><?php echo gettext('Password'); ?></td>
19             <td><input type="password" name="password1" /></td>
20         </tr>
21         <tr>
22             <td><?php echo gettext('Password (again)'); ?></td>
23             <td><input type="password" name="password2" /></td>
24         </tr>
25         <tr>
26             <td><?php echo gettext('Email address'); ?></td>
27             <td><input type="text" name="email" value="<?php echo $u->email; ?>" /></td>
28         </tr>
29         <tr>
30             <td>&nbsp;</td>
31             <td><input type="submit" value="<?php echo gettext('Create account!'); ?>" /></td>
32         </tr>
33     </table>
34 </form>
Note: See TracBrowser for help on using the browser.