Skip to main content

Posts

Showing posts with the label Awesome font

How to Create a secure login panel with PHP & Mysql using parameters and session

Secure Login with PHP & Mysql Download project zip Requirement: you need an Apache and MySQL Server database on your device If your computer has xampp or wamp or mamp  or lamp that's great otherwise you need to install Apache and MySQL server Create a database login Run this query : CREATE TABLE admin ( id INT(6) AUTO_INCREMENT PRIMARY KEY, uname VARCHAR(30) NOT NULL, upass VARCHAR(30) NOT NULL ); INSERT INTO `admin` (`id`, `uname`, `upass`) VALUES (NULL, 'admin', 'admin1993'); That means you set your username =  admin and password = admin1993 Login Page: login.php <!doctype html> <html> <head> <meta charset="utf-8"> <title>Login Getway</title> <link rel="stylesheet" href="http://fontawesome.io/assets/font-awesome/css/font-awesome.css" type="text/css"> <style> * { margin:0px; padding:0px; font-family:ar...

Responsive header menu bar using jquery with sub-menu for mobile and tables

Responsive menu jquery with submenu mobile and tables Download HTML File Source : <!doctype html> <html> <head> <meta charset="utf-8"> <title>Responsive menu jquery with submenu mobile and tables </title> <link rel="stylesheet" href="http://fontawesome.io/assets/font-awesome/css/font-awesome.css" type="text/css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(e) {     $("#mobileMen").click(function(){ $("#menu").fadeToggle(100) }) }); </script> <style> * { margin:0px; padding:0px; text-decoration:none; color:inherit; font-family:arial; transition-duration:.5s; }  nav  { background:#FF404E;     background: -webkit-linear-gradient(#FF404E, #FF616C);     background: -o-linear-gradient(#FF404E, #FF616C);     backgrou...