diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-06-10 23:53:55 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-06-10 23:53:55 +0000 |
commit | 71753c87a5eecdc84b02f3ecb599c5fb70d0f044 (patch) | |
tree | 839c60840703bd20f56fce7b3a9f438995e8b7e9 /phpBB | |
parent | e92396a826b56258bd999cc07b13eccac6c57ebe (diff) | |
download | forums-71753c87a5eecdc84b02f3ecb599c5fb70d0f044.tar forums-71753c87a5eecdc84b02f3ecb599c5fb70d0f044.tar.gz forums-71753c87a5eecdc84b02f3ecb599c5fb70d0f044.tar.bz2 forums-71753c87a5eecdc84b02f3ecb599c5fb70d0f044.tar.xz forums-71753c87a5eecdc84b02f3ecb599c5fb70d0f044.zip |
A workaround till if...else available
git-svn-id: file:///svn/phpbb/trunk@448 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/templates/Default/loginbox.tpl | 1 | ||||
-rw-r--r-- | phpBB/templates/PSO/loginbox.tpl | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/templates/Default/loginbox.tpl b/phpBB/templates/Default/loginbox.tpl new file mode 100644 index 0000000000..f6fa18f676 --- /dev/null +++ b/phpBB/templates/Default/loginbox.tpl @@ -0,0 +1 @@ +{L_USERNAME} : <input type="text" name="username"><br>{L_PASSWORD} : <input type="password" name="password"><br>{L_LOG_ME_IN}<input type="checkbox" name="autologin"> <input type="submit" name="submit" value="{L_LOGIN}">
\ No newline at end of file diff --git a/phpBB/templates/PSO/loginbox.tpl b/phpBB/templates/PSO/loginbox.tpl new file mode 100644 index 0000000000..b897efe70f --- /dev/null +++ b/phpBB/templates/PSO/loginbox.tpl @@ -0,0 +1,3 @@ + <tr><form method="post" action="{S_LOGIN_ACTION}"> + <td colspan="3" align="right" valign="bottom"><font face="{T_FONTFACE1}" size="{T_FONTSIZE1}">{L_USERNAME}: <input class="text" type="text" name="username"> {L_PASSWORD}: <input type="password" name="password"> {L_AUTO_LOGIN}</font>: <input class="text" type="checkbox" name="autologin"> <input type="submit" name="submit" value="{L_LOGIN}"> </font></td> + </form></tr> |