Skip to content

coder797/php-login-framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP-Login

Simple testing php login framework for server testing and authentication.

How it works

  • The system is coded 100% in PHP (although a minimal knowledge of HTML is required).
  • The visual framework used is Bootstrap.
  • There are four main pages: login.php shows the login form, index.php the default password-protected area, logout.php simply ends the session and config.php stores the user's information.

How to use it

  1. Download the source files to your computer.
  2. Open config.php with your text editor and find the variables $Username and $Password.
  3. Change the username and password ( use the salted version of your password).
  4. Save the files, upload them to your webserver .
EXTRA:
  • If you want to password-protect any page, just add this snippet of code at the beginning of it:
<?php
  session_start(); /* Starts the session */
  if($_SESSION['Active'] == false){ /* Redirects user to login.php if not logged in */
    header("location:login.php");
    exit;
  }
?>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages