diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-17 00:53:38 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-17 00:53:38 +0000 |
| commit | e975227cffd51f6243891f679ee301edf0941907 (patch) | |
| tree | 5a799d358969e3c11ba0aa5e22bd3835c8792478 /phpBB/templates/subSilver | |
| parent | 391c4bff08bccfb8eb7304a64ff79d763657f1c4 (diff) | |
| download | forums-e975227cffd51f6243891f679ee301edf0941907.tar forums-e975227cffd51f6243891f679ee301edf0941907.tar.gz forums-e975227cffd51f6243891f679ee301edf0941907.tar.bz2 forums-e975227cffd51f6243891f679ee301edf0941907.tar.xz forums-e975227cffd51f6243891f679ee301edf0941907.zip | |
Moved login procedure to a function enabling "inline" login links ... no more "messy" redirects ... install will be broken for now, at least when it comes to redirecting after completion. Moved "front-end" login to ucp.php
git-svn-id: file:///svn/phpbb/trunk@3650 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates/subSilver')
| -rw-r--r-- | phpBB/templates/subSilver/login_body.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/phpBB/templates/subSilver/login_body.html b/phpBB/templates/subSilver/login_body.html index f096fcdf6c..cf26571028 100644 --- a/phpBB/templates/subSilver/login_body.html +++ b/phpBB/templates/subSilver/login_body.html @@ -11,11 +11,18 @@ <tr> <th height="25">{L_LOGIN}</th> </tr> + <!-- IF LOGIN_EXPLAIN neq '' --> <tr> - <td class="row3" align="center"><span class="gensmall"><a href="{U_TERMS_USE}">{L_TERMS_USE}</a> <a href="{U_PRIVACY}">{L_PRIVACY}</a></span></td> + <td class="row3" align="center"><span class="gensmall">{LOGIN_EXPLAIN}</td> </tr> + <!-- ENDIF --> <tr> <td class="row1" align="center"><table cellspacing="1" cellpadding="2" border="0"> + <!-- IF LOGIN_ERROR neq '' --> + <tr> + <td class="gensmall" colspan="2" align="center"><span style="color:red">{LOGIN_ERROR}</span></td> + </tr> + <!-- ENDIF --> <tr> <td><b class="gensmall">{L_USERNAME}:</b></td> <td><input class="post" type="text" name="username" size="25" maxlength="40" value="{USERNAME}" /><br /><a class="gensmall" href="{U_REGISTER}">{L_REGISTER}</a></td> @@ -32,6 +39,9 @@ <td> </td> <td><input type="checkbox" name="viewonline" /> <span class="gensmall">{L_HIDE_ME}</span></td> </tr> + <tr> + <td colspan="2" align="center"><span class="gensmall"><a href="{U_TERMS_USE}">{L_TERMS_USE}</a> | <a href="{U_PRIVACY}">{L_PRIVACY}</a></span></td> + </tr> </table></td> </tr> <tr> |
