Git Product home page Git Product logo

face-recognition-login-system's Introduction

Face-Recognition-Login-System

It's a Face Recognition Login System which is developed using Python Tkinter and MySQL database.

To successfully launch the project in your system, first, you must create the following database, and tables and declare some default data there. I'm assuming the MySQL server is installed in your system and you know the basics.

  1. Create a database with this name, "employee_management"

create database employee_management;

  1. Now create a table ("employee_register") under that database.

create table employee_register( f_name VARCHAR(40) NOT NULL, l_name VARCHAR(40) NOT NULL, uid Int NOT NULL AUTO_INCREMENT, email VARCHAR NOT NULL, designation VARCHAR NOT NULL, contact BIGINT NOT NULL, dob DATE NOT NULL, join_date DATE NOT NULL, gender char(15) NOT NULL, address VARCHAR NOT NULL, PRIMARY KEY ( uid ) );

  1. Run this command Since we have set the user id as Integer type and Auto Increment (see the previous section), here we will set a base value for it so that the counting starts from that range.

ALTER TABLE employee_register AUTO_INCREMENT=1000;

  1. Create an another table ("admin") there

create table admin( username VARCHAR NOT NULL, password VARCHAR NOT NULL, PRIMARY KEY ( username ) );

  1. Insert default value into the "admin" table In this case, we are setting a user id and password for the admin of the system. You need to choose this credential as per your choice here.

INSERT INTO admin (username,password) VALUES ('your_username','your_password');

face-recognition-login-system's People

Contributors

subhankar-rakshit avatar

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.