diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-05-19 14:03:38 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-05-19 14:03:38 +0000 |
commit | 01c62e34fcd095e583f00a1890e6f311fbcb47dd (patch) | |
tree | c6731a48e6e9922def7b1ab15c118f366d3f6f92 /templates | |
parent | 6d6343d74ae51fff6cf1744187fda76bb840a6a4 (diff) | |
download | semanticscuttle-01c62e34fcd095e583f00a1890e6f311fbcb47dd.tar.gz semanticscuttle-01c62e34fcd095e583f00a1890e6f311fbcb47dd.tar.bz2 |
Interface fix: add help when registering
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@328 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates')
-rw-r--r-- | templates/register.tpl.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/register.tpl.php b/templates/register.tpl.php index b0c5425..4497184 100644 --- a/templates/register.tpl.php +++ b/templates/register.tpl.php @@ -14,8 +14,8 @@ window.onload = function() { <table> <tr> <th align="left"><label for="username"><?php echo T_('Username'); ?></label></th> - <td><input type="text" id="username" name="username" size="20" class="required" onkeyup="isAvailable(this, '')" /></td> - <td id="availability"></td> + <td><input type="text" id="username" name="username" size="20" class="required" onkeyup="isAvailable(this, '')" /> </td> + <td id="availability"><?php echo '←'.T_(' at least 5 characters, alphanumeric (no spaces, no dots or other special ones)') ?></td> </tr> <tr> <th align="left"><label for="password"><?php echo T_('Password'); ?></label></th> @@ -25,7 +25,7 @@ window.onload = function() { <tr> <th align="left"><label for="email"><?php echo T_('E-mail'); ?></label></th> <td><input type="text" id="email" name="email" size="40" class="required" /></td> - <td></td> + <td><?php echo '←'.T_(' to send you your password if you forget it')?></td> </tr> <?php if(strlen($antispamQuestion)>0) {?> |