Skip to content

Latest commit

 

History

History
151 lines (120 loc) · 4 KB

README.md

File metadata and controls

151 lines (120 loc) · 4 KB


Simple Web Login with MySQL

This repository is about simple login logout system using php and build in using html and css with MySQL database.
Explore the docs »

View Demo · Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. File Structure
  3. Installation
  4. Feature
  5. Contributing

About The Project

This repository is making simple login system that have some feature like chain login session and logout and show table. And create using HTML, CSS, PHP with MySQL. Version 2.0

Login Sample: Sample Login

Home Sample: Sample Dashboard

Image Source:
Login Background Source
Home Background Source

(back to top)

File Structure

Here is the file structure of this repository

. 
├── css
|   |
|   ├── content.css
|   └── login.css
|
├── img
|   |
|   ├── bg.jpg
|   ├── home.png
|   ├── login.png
|   └── loginbg.png
|
├── src  
|   |
|   ├── home.php
|   ├── matkul.php
|   └── mhs.php
|
├── index.php
└── README.md

(back to top)

Installation

  1. Clone the repo
 git clone https://github.com/Dhaboav/web-login.git
  1. Create database uas in MySQL
CREATE DATABASE uas;
  1. Create table mahasiswa in database uas
CREATE TABLE mahasiswa (
  nim varchar(11) PRIMARY KEY,
  nama varchar(50),
  jenis_kelamin varchar(6),
  no_hp varchar(13)
);
  1. Create table mata_kuliah in database uas
CREATE TABLE mata_kuliah (
  id_matakuliah varchar(6) PRIMARY KEY,
  nama_matakuliah varchar(50),
  sks int(2),
  dosen_pengampu varchar(50)
);
  1. Run in your localhost
 http://localhost/web-personal/index.php

(back to top)

Feature

  • Simple Login System (Chain session login and logout) with MySQL database.
  • Simple error message in wrong username or password.
  • Simple Dashboard to show table in database.
  • Can edit and delete for admin. And only see and edit for unique id.

See the open issues for a full list of proposed features (and known issues).

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)