Fake username & password input form..

by JMIN
1 replies
Hi,

I want to make it look like a user is logging in to access content.. so they just enter there email and a password..... then they're taken to a private page.....

The e-mail can be anything... then the password would always be the same, so after payment I just send them automatically an e-mail saying "Your username is your e-mail address and the password is xxxxxx, please go to this page to login".

Any ideas?

If not a simple password protection box will do..
#fake #form #input #password #username
  • Profile picture of the author Evan-M
    Originally Posted by JMIN View Post

    Hi,

    I want to make it look like a user is logging in to access content.. so they just enter there email and a password..... then they're taken to a private page.....

    The e-mail can be anything... then the password would always be the same, so after payment I just send them automatically an e-mail saying "Your username is your e-mail address and the password is xxxxxx, please go to this page to login".

    Any ideas?

    If not a simple password protection box will do..

    <?php
    If ($password == 'your password here') {
    $_SESSION['loggedin'] = md5($email);
    header( 'Location: http://www.yoursite.com/new_page.html' ) ;
    } else {
    echo ' you suck and cannot type in a password correctly ' ;
    }
    ?>
    Signature

    Evan-M

    Easily The Worlds Best Wordpress Popup plugin

    Visit Website Design Firm For All Your Wordpress Coding Needs

    {{ DiscussionBoard.errors[3361276].message }}

Trending Topics