Forums

[resolved] How to create a login section in wordpress site? (3 posts)

  1. Rishi Kulshreshtha
    Member
    Posted 1 year ago #

    How can we create a login section in WordPress site I want it like this Login Image to be placed above my navigation panel.

    Note: I don't want to use the plugin for this, in short I only want two text boxes with one submit button and a link to forget password.

  2. keesiemeijer
    moderator
    Posted 1 year ago #

  3. Rishi Kulshreshtha
    Member
    Posted 1 year ago #

    Thanks keesiemeijer for the help but I was in need of this code.

    <?php if (!(current_user_can('level_0'))){ ?>
    <h2>Login</h2>
    <form action="<?php echo get_option('home'); ?>/wp-login.php" method="post">
    <input type="text" name="log" id="log" value="<?php echo wp_specialchars(stripslashes($user_login), 1) ?>" size="20" />
    <input type="password" name="pwd" id="pwd" size="20" />
    <input type="submit" name="submit" value="Send" class="button" />
        <p>
           <label for="rememberme"><input name="rememberme" id="rememberme" type="checkbox" checked="checked" value="forever" /> Remember me</label>
           <input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>" />
        </p>
    </form>
    <a href="<?php echo get_option('home'); ?>/wp-login.php?action=lostpassword">Recover password</a>
    <?php } else { ?>
    <h2>Logout</h2>
    <a href="<?php echo wp_logout_url(urlencode($_SERVER['REQUEST_URI'])); ?>">logout</a><br />
    <a href="http://XXX/wp-admin/">admin</a>
    <?php }?>

Topic Closed

This topic has been closed to new replies.

About this Topic