Coder Social home page Coder Social logo

ats-spc-a's Introduction

ATS SPC - Group A

  • A staff Management Application for all working days.
  • Objective to control times, dates of arrivals.
  • We have two types of use:
    1. Users
    2. Administrator that controls the database

Authors

  • YAHYA YACOUB Elmardi
  • ABDELGADIER Suliman
  • SYED ZEESHAN Ali Zaïdi

Prerequisites

  • Create database called ATS_SPC:
CREATE TABLE IF NOT EXISTS `users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE latin1_bin NOT NULL,
  `surname` varchar(100) COLLATE latin1_bin NOT NULL,
  `email` varchar(200) COLLATE latin1_bin NOT NULL,
  `passcode` varchar(100) COLLATE latin1_bin NOT NULL)
CREATE TABLE IF NOT EXISTS `checkins` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `arrival_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `user_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COLLATE=latin1_bin AUTO_INCREMENT=28 ;
  • in config.php files:
define('DB_SERVER', 'localhost'); // Host name
define('DB_USERNAME', 'root'); // Mysql username
define('DB_PASSWORD', 'simplonco'); // Mysql password
define('DB_DATABASE', 'ATS_SPC'); // Database name

Mockups

admin.php.png attendancehistory.php.png leave1.php.png search1.php.png attendance1.php.png attendance.php.png leave2.php.png search.php.png attendance2.php.png error.php.png leave.php.png user.php.png attendance3.php.png history.php.png logout.php.png attendance4.php.png index1.php.png policyuser.php.png

ats-spc-a's People

Contributors

alizaidi1 avatar bmiande avatar elmardi2 avatar solomongamid avatar yvan-sraka avatar

Watchers

 avatar  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.