Giter VIP home page Giter VIP logo

boiler-plates-codeigniter-3.x-login's Introduction

Boiler-Plates-Codeigniter-3.x-Login

Boiler Plate for Login System in Codeigniter 3.x

Create a database of any name in your MySQL using phpmyadmin or terminal Create table users

Table structure for table users

CREATE TABLE users ( id int(11) NOT NULL, username varchar(50) NOT NULL, password varchar(50) NOT NULL, fullname varchar(50) NOT NULL, status enum('pending','approved') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Insert Sample Data in it

INSERT INTO users (id, username, password, fullname, status) VALUES (1, 'john', '56f5950b728849d0b97c1bccf1691c090ab6734c', 'John Vick', 'approved');

Step - 1

Clone the zip file in your machine. Extract the files and place the boilerplate folder in your localhost root

Step - 2

Go to application->config->database.php Change the database name and user credentials as per your local machine

Step - 3

Browse via http://localhost/Boiler-Plates-Codeigniter-3.x-Login/Login

if you want the login controller to load automatically, set it as default_controller in routes

For Testing

Username: john Password: john

========================================

Security

For security I am using Codeigniter's Security Class.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.