This is probably in the wrong section and I don't much enjoy neopets but I'm a good actor and I want to learn how to make a website, btw how is it going to be hosted, and do you have the domain registered? Also, I just made an http form that logs into a website
login.html
CODE
<html>
<head>
<title>Please Log In</title>
</head>
<body>
<h1>Please Log In</h1>
<form action = dologin.php method = post>
Username:<br>
<input name = u size = 25><br><br>
Password:<br>
<input name = p size = 25 type = password><br><br>
<input type = submit value = 'Login'>
</form>
</body>
</html>
dologin.php
CODE
<?php
$u = "";
$p = "";
if(isset($_POST['u']))
{
$u = $_POST['u'];
}
if(isset($_POST['p']))
{
$p = $_POST['p'];
}
if($u == 'Ender' && $p == 'sneaky') {
header("location: logged_in.htm");
}
else {
header("location: login.htm");
}
logged_in.html
CODE
<h1>You are now logged in!</h1>
Feel free to use some of my code even if I don't become staff