Skip to content

Manage member user & login System for CodeIgniter. It's very small, secure (with notification to review activity log in, will Sent via Email) and very fast login system, πŸ‘ with bootstrap 3 & Custom Theme.

License

MakingBrowserGames/Dnato-system-login

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

59 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

What is Dnato System Login?

Manage member user & login System for CodeIgniter. It's very small, secure (with notification to review activity log in, will Sent via Your Email) and very fast login system, πŸ‘ with bootstrap 3 & Custom Theme.

Created By me Abed Putra

Screenshot

Dnato System Login

screen shot 2017-11-23 at 11 00 27

Features

  • Add user
  • Delete user
  • Ban, Unban user
  • Register new user sent to email token
  • Forget password
  • Role user level
  • Edit user profile
  • Gravatar user profile
  • Recaptcha by Google
  • Compress HTML Settings, for more speed
  • Secure Account (Notification to Review Activity Log In, Will Sent via Email like Google) πŸ†• πŸŽ‰
  • Active or Inactive Recaptcha πŸ†•
  • Add Settings πŸ†•
  • Add Theme πŸ†• πŸŽ‰

Settings

  • database.php
'hostname' => 'localhost', 'username' => '', 'password' => '', 'database' => '',
  • config.php
//Link URL
$config['base_url'] = 'http://adminweb.com/admin/';
// Sent email from:
$config['register'] = 'admin@gmail.com';
$config['forgot'] = 'admin@gmail.com';
  • ReCAPTCHA.php (Library)
private $dataSitekey = ""; //Your SiteKey`
private $lang = "en"; //Lang ReCAPTCHA
public $secret = ''; //Secret

User Level

  • is_admin
  • is_author
  • is_editor
  • is_subscriber

Install

  • Clone or download
  • Import Sql file
  • Do Settings
  • Done

login

Check User Level

controller.php

//check user level
if(empty($data['role'])){
    redirect(site_url().'main/login/');
}
$dataLevel = $this->userlevel->checkLevel($data['role']);
//check user level

if($dataLevel == "is_admin"){
  (your code here)
}

About

Dnato System Login is based on the codeigniter. Dnato System Login is based frontend on the Bootstrap framework created by Mark Otto and Jacob Thorton. Password hashing with PBKDF2, Author: havoc AT defuse.ca. Ported to CodeIgniter by Richard Thornton. CodeIgniter Curl Libraries by Philip Sturgeon. Theme by Bootswatch.

Support me

Support me at Patron

LICENSE

The MIT License (MIT).

Copyright (c) 2017, Abed Putra.

Please feel free to send me an email if you have any problems. Thank you so much, my email : abedputra@gmail.com.

About

Manage member user & login System for CodeIgniter. It's very small, secure (with notification to review activity log in, will Sent via Email) and very fast login system, πŸ‘ with bootstrap 3 & Custom Theme.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 99.4%
  • Other 0.6%