Login And Registration MVC framework

Overview

This is a login and registration system for people who wants to use modern and secure self-made framework.

Features

Features are included:

  • Built in MVC Model 
  • Validations by hasing (default SHA1) and email regex. 
  • Secure Database connection. 
  • SQL injuction protection. 
  •  Easy to implemet to other websites 
  • Client information is stored in Session. 
  •  Log file creating about the errors. 
  • Email validation 
  • Dashboard basic design concept created. (Will have and update in the future in a newer release).

Requirements

  • Node.js for scss – css conversion
  • Some kind of webserver 
  • Recommend PHP 7.0 or higher version (lower could be require some rewrite lines)
  • For email services : smtp server or sendmail app

Instructions

Database connection

In order to make a successful connection with your DB you have to give valid information about the used database at the top of the sql.model.php (app/models/), I used MYSQL connection but if you use other like PostgreSQL you just have to look at this manual [http://php.net/manual/en/ref.pdo-pgsql.php] to rewrite PDO section.
I attached the database structure with two different type (.sql,.csv), if you already created your database please do some rewrite in sql statements at sql.model.php.

More instructions in the documentation!

Related