Do you have sensitive data on your website or want to make it membership-only? Either way, you will need an authenticating program to stop unwanted people from looking at your data. The script that we are going to make is quite hard to crack as it is server-based. (PHP)

Folder Structure :

login/
├── file_that_you_want_to_protect.php
└── login.php

Let’s start coding!

1. Protect The File

This login form only needs one line of code on top of any HTML! So just add this on top of all the files that you want to protect. Make sure that the file ends in .php for it to work.

<?php require('login.php'); ?>

#passwords #php #login #html

How to Make a simple login page with HTML and PHP
16.15 GEEK