2 $this->includeTemplate($GLOBALS['top_include']);
5 <script type="text/javascript">
6 window.onload = function() {
7 document.getElementById("username").focus();
11 <p><?php echo sprintf(T_('Sign up here to create a free %s account. All the information requested below is required'), $GLOBALS['sitename']); ?>.</p>
13 <form action="<?php echo $formaction; ?>" method="post">
16 <th align="left"><label for="username"><?php echo T_('Username'); ?></label></th>
17 <td><input type="text" id="username" name="username" size="20" class="required" onkeyup="isAvailable(this, '')" /></td>
18 <td id="availability"></td>
21 <th align="left"><label for="password"><?php echo T_('Password'); ?></label></th>
22 <td><input type="password" id="password" name="password" size="20" class="required" /></td>
26 <th align="left"><label for="email"><?php echo T_('E-mail'); ?></label></th>
27 <td><input type="text" id="email" name="email" size="40" class="required" /></td>
32 <td><input type="submit" name="submitted" value="<?php echo T_('Register'); ?>" /></td>
39 $this->includeTemplate($GLOBALS['bottom_include']);