]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/login.tmpl
added simplified chown, setacl actions
[SourceForge/phpwiki.git] / themes / default / templates / login.tmpl
1 <?php // -*-php-*- ?>
2 <!-- $Id: login.tmpl,v 1.33 2004-06-07 22:44:41 rurban Exp $ -->
3 <!-- The login form -->
4 <?php if ($fail_message) { ?>
5   <p><strong><?=$fail_message?></strong></p>
6   <hr noshade="noshade" />
7 <?php } ?>
8 <?php /* br past the logo */ ?>
9 <br class="clear-floats" />
10
11 <?php 
12 if (DEBUG) {
13   $t = sprintf("  DEBUG: ALLOW_ANON_EDIT = %s, ALLOW_BOGO_LOGIN = %s, ALLOW_USER_PASSWORDS = %s, ENABLE_PAGEPERM = %s, ", 
14                ALLOW_ANON_EDIT ? "true" : "false",
15                ALLOW_BOGO_LOGIN ? "true" : "false",
16                ALLOW_USER_PASSWORDS ? "true" : "false",
17                ENABLE_PAGEPERM ? "true" : "false");
18   if (ALLOW_USER_PASSWORDS) {
19     $t .= sprintf("  USER_AUTH_ORDER: %s", join(" => ", $GLOBALS['USER_AUTH_ORDER'])) 
20         . sprintf(",  USER_AUTH_POLICY: %s", USER_AUTH_POLICY)
21         . sprintf(",  PASSWORD_LENGTH_MINIMUM: %s", PASSWORD_LENGTH_MINIMUM);
22   }
23   echo asXML(HTML::div(array('class' => 'debug'),$t));
24   echo "<br />\n";
25 }
26 if (ALLOW_BOGO_LOGIN && $require_level <= WIKIAUTH_BOGO) {
27   require_once("lib/BlockParser.php");
28   // This iso-8859-1 sample covers French, Spanish, Italian, German, and probably others
29   if (check_php_version(4,3))
30     $examplechars = htmlentities("ÀñíçéàÖãæôßøü", ENT_QUOTES, $charset);
31   elseif (check_php_version(4,0,3))
32     $examplechars = htmlentities("ÀñíçéàÖãæôßøü", ENT_QUOTES);
33   else
34     $examplechars = htmlentities("ÀñíçéàÖãæôßøü");
35   // Japanese login requires utf-8 and ALLOW_NONWIKIWORD_LOGINS
36   if (($charset == 'utf-8') && defined('ALLOW_NONWIKIWORD_LOGINS') && ALLOW_NONWIKIWORD_LOGINS) {
37     //sample Japanese login name in unicode
38     $examplechars = $examplechars . "&#22825;&#36947;&#12354;&#12363;&#12397;";
39   }
40   $t = asXML(TransformText(_("You may sign in using any [WikiWord|AddingPages] as a user id. (Any characters in %s etc. may be used too). The user id will be used as a link in RecentChanges to your home page."), 2.0, true));
41   if (substr_count($t,"%s") == 1) {
42       $s = @sprintf($t, $examplechars);
43       // FIXME: Workaround gettext or sprintf problem
44       if (empty($s)) echo $t;
45       else echo sprintf($t, $examplechars);
46   } else {
47       echo $t;
48   }
49   /* On disabled DbPrefs (PagePrefs only) note the user to create his PersonalPage. */
50   // don't understand why I put this in --rurban
51   if (!isset($user->_prefs->_select)) {
52     echo asXML(TransformText(_("Note: Only if you create your personal HomePage with same the pagename as your user id, you will be able to store your UserPreferences. Otherwise not.")));
53   }
54   if (empty($pass_required)) ?>
55   <p><?= _("New users may use an empty password.") ?></p>
56 <?php } ?>
57 <form method="post" action="<?= $request->getPostURL() ?>" accept-charset="<?=CHARSET?>" name="login">
58 <table cellspacing="4">
59 <tr>
60   <td align="right"><?= _("UserId:") ?></td>
61   <td><input type="text" name="auth[userid]" size="12" maxlength="256" value="<?=$userid?>" /></td>
62 </tr>
63 <tr>
64   <td align="right"><?= _("Password:") ?></td>
65   <td><input type="password" name="auth[passwd]" size="12" maxlength="256" /></td>
66 </tr>
67 <tr><td align="center" colspan="2">
68   <?=Button("submit:", _("Sign In"), 'wikiaction')?>
69   <?php if (!$require_level) { ?>
70     <?=Button("submit:auth[cancel]", _("Cancel"), 'button')?>
71   <?php } ?>
72 </td></tr>
73 </table>
74
75 <input type="hidden" name="auth[require_level]" value="<?=$require_level?>" />
76 <input type="hidden" name="auth[login]" value="1" />
77 <?= HiddenInputs($request->getArgs(), false, array('auth')) ?>
78 </form>
79
80 <script language="JavaScript" type="text/javascript">
81 <!-- // Really there's got to be a simpler way to do this....
82 function select_input (type) {
83     var elements = document.forms['login'].elements;
84     for (var i = 0; i < elements.length; i++) {
85         if (elements[i].type == type) {
86             elements[i].focus();
87             return;
88         }
89     }
90 }
91 select_input('<?= $userid ? "password" : "text" ?>');
92 //-->
93 </script>