简体   繁体   English

joomla中的用户名和密码帮助

[英]username and password help in joomla

What I'm trying to do here is display my login information and once logged in display something else 我在这里要做的是显示我的登录信息,登录后显示其他信息

Example is here 例子在这里

    <?php
    $user = JFactory::getUser();
    $status = $user->guest;

    if($status == 1){
    echo '
   <form id="login-form" class="form-inline" method="post" action="/home">
   <div class="topUser">
        Name: 
        <input id="modlgn-username" class="TopinputReg" type="text" placeholder="User Name" tabindex="0" name="username" />
      </div>
      <div class="toppass">Password: 
        <input id="modlgn-passwd" class="TopinputReg" type="password" placeholder="Password" tabindex="0" name="password" pwfprops="," />
      </div>
      <div class="topsignin">
        <input class="Signin" name="Submit" tabindex="0" type="submit" value="" />
      </div>
      <div class="topregister">
        <a href="http://gamers-league.com/forums/user/register"><input name="button" type="submit" class="Register" id="button" value="" /></a>
              </div>
    <input type="hidden" value="com_users" name="option">
    <input type="hidden" value="user.login" name="task">
    <input type="hidden" value="aW5kZXgucGhwP0l0ZW1pZD0xMzM=" name="return">
    <input type="hidden" value="1" name="39ea5446d876078c6f6221d396ef5bd4">
              </form>
    ';
     }
    else
    {
    echo '
    <div class="topUser">Welcome Back!</div>
      <div class="toppass">Enjoy you stay.</div>
      <form id="login-form" class="form-vertical" method="post" action="/log-out">
      <div class="topsignin">
        <input class="Signout" type="submit" value="" name="Submit" />
        <input type="hidden" value="com_users" name="option">
              </div>
    <input type="hidden" value="com_users" name="option">
    <input type="hidden" value="user.logout" name="task">
    <input type="hidden" value="aW5kZXgucGhwP0l0ZW1pZD0xMDE=" name="return">
    <input type="hidden" value="1" name="994c61f8ab4ccf23fe9dae6546a87089">

      </form>
      <div class="topregister">
        <a href="http://gamers-league.com/forums/user"><input name="button" type="submit" class="account" id="button" value="" /></a>
      </div>
    ';
    }
    ?>

No I know what I am doing wrong just have no clue how to fix it. 不,我不知道我在做什么错,只是不知道如何解决。 the two 他们俩

need to have a different generated number each time but how do i do this. 每次需要有一个不同的生成数,但是我该怎么做。

since this numbers are the same every time if i log in then out then try to log back in it will give me "Invalid Token" 因为每次我登录然后退出时尝试使用的数字都是相同的,所以尝试重新登录会给我“无效令牌”

When i go into the login template it gives me this for login 当我进入登录模板时,它为我提供了登录信息

<input type="hidden" name="return" value="<?php echo base64_encode($this->params->get('login_redirect_url', $this->form->getValue('return'))); ?>" />
<?php echo JHtml::_('form.token'); ?>

and this for log out 这是注销

<input type="hidden" name="return" value="<?php echo base64_encode($this->params->get('logout_redirect_url', $this->form->getValue('return'))); ?>" />
<?php echo JHtml::_('form.token'); ?>

Now if I replace the hidden fields that already have the pregenerated numbers with the php stuff above when i try to refresh my page it goes completely blank. 现在,当我尝试刷新页面时,如果我用上面的php替换了已经具有预生成数字的隐藏字段,则它完全空白。

I am at a loss with this see as how I am not very advanced in php. 我不知所措,因为我在php中不是很高级。 any help anyone cant provide would be massively helpful.. 任何人无法提供的帮助将大有帮助。

why not try like this, 为什么不尝试这样,

  <?php
    $user = JFactory::getUser();
    $status = $user->guest;

    if($status == 1):
?>

<form id="login-form" class="form-inline" method="post" action="/home">
   <div class="topUser">
        Name: 
        <input id="modlgn-username" class="TopinputReg" type="text" placeholder="User Name" tabindex="0" name="username" />
      </div>
      <div class="toppass">Password: 
        <input id="modlgn-passwd" class="TopinputReg" type="password" placeholder="Password" tabindex="0" name="password" pwfprops="," />
      </div>
      <div class="topsignin">
        <input class="Signin" name="Submit" tabindex="0" type="submit" value="" />
      </div>
      <div class="topregister">
        <a href="http://gamers-league.com/forums/user/register"><input name="button" type="submit" class="Register" id="button" value="" /></a>
              </div>
    <input type="hidden" value="com_users" name="option">
    <input type="hidden" value="user.login" name="task">
    <input type="hidden" name="return" value="<?php echo base64_encode($this->params->get('login_redirect_url', $this->form->getValue('return'))); ?>" />
<?php echo JHtml::_('form.token'); ?>
              </form>

<?php else:
?>

<div class="topUser">Welcome Back!</div>
      <div class="toppass">Enjoy you stay.</div>
      <form id="login-form" class="form-vertical" method="post" action="/log-out">
      <div class="topsignin">
        <input class="Signout" type="submit" value="" name="Submit" />
        <input type="hidden" value="com_users" name="option">
              </div>
    <input type="hidden" value="com_users" name="option">
    <input type="hidden" value="user.logout" name="task">
    <input type="hidden" name="return" value="<?php echo base64_encode($this->params->get('logout_redirect_url', $this->form->getValue('return'))); ?>" />
<?php echo JHtml::_('form.token'); ?>

      </form>
      <div class="topregister">
        <a href="http://gamers-league.com/forums/user"><input name="button" type="submit" class="account" id="button" value="" /></a>
      </div>
<?php endif;?>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM