Psychzor
New member
Hi there! 
So i had this figured out some years back, but i cant seem to find the tutorial again or any backup.
Basically it was a simple login form that sends the user to a specified URL if the text is correct.
Something like if input type text is "custom text" and input type password is "custom text" then input type submit button go to ahref "custom url"
Funny because it was so basic and had no fancy CSS or javascript if I remember correctly. Again, I used it years go, can't really remember it properly.
So it doesn't use any database or any other advanced stuff (for me), It used to work with more names and passwords, not just one, like demo name and demo pass.
Think of it as a simple webpage locked with a password, if you want to access it, enter password, a custom word, if the word is correct, the button sends you to a custom url.
I'm just gonna leave this here and hopefully you can help.
Thanks!

So i had this figured out some years back, but i cant seem to find the tutorial again or any backup.
Basically it was a simple login form that sends the user to a specified URL if the text is correct.
Something like if input type text is "custom text" and input type password is "custom text" then input type submit button go to ahref "custom url"
Code:
<div>
<label for="username">Username:</label>
<input type="text" id="username" name="username">
</div>
<p></p>
<div>
<label for="pass">Password:</label>
<input type="password" id="pass" name="password" minlength="8" required="">
</div>
<input type="submit" value="Sign in">
Funny because it was so basic and had no fancy CSS or javascript if I remember correctly. Again, I used it years go, can't really remember it properly.
So it doesn't use any database or any other advanced stuff (for me), It used to work with more names and passwords, not just one, like demo name and demo pass.
Think of it as a simple webpage locked with a password, if you want to access it, enter password, a custom word, if the word is correct, the button sends you to a custom url.
I'm just gonna leave this here and hopefully you can help.
Thanks!
Last edited: