Logging in with Codeigniter

I am new to codeigniter, but I am very clear on the basics. I start with my new web application (CMS) actually.

I want to know the best methodology used to create a login system using codeigniter for the admin panel (backend).

Regards, Meninal Purohit

+7
source share
4 answers

If you want to know about the libraries available for logging in / out, and more than you should read this:

How to choose an authentication library for CodeIgniter?

and if you just want to understand the safe and easy login process, you have to go and read the code for this:

https://github.com/DaBourz/SimpleLoginSecure

+3
source

I would recommend ion auth: http://benedmunds.com/ion_auth/

it has excellent documentation, you can have several types for users, and that you can easily get an admin group.

+3
source

You can use tank_auth: http://www.konyukhov.com/soft/tank_auth/ It is very easy to use!

+2
source

Here is another library :) http://ellislab.com/codeigniter/forums/viewthread/229645/ Best regards.

+2
source

All Articles