Create password submission with HTML and PHP

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>

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.