So I want a password put on a page for my website
I already have the form I just need help with the PHP and making the password private so people cant use the inspect element to find it
The HTML file and PHP file are separate and I’ll paste the code below:
<HTML>
<head>
<form action="process.php" method="POST">
Authentication Token: <input type='password' name='psw' size='20'>
<br>
<input type='submit' value='Request access'>
</form>
</head>
</html>