Hello,
Im making a website and including this HTML code
"<div id="login" class="animate form">
<form action="mysuperscript.php" autocomplete="on">
<h1>Log in</h1>
<p> <label for="username" class="uname"
data-icon="u"> Your email or username </label> <input
id="username" name="username" required="required"
placeholder="myusername or [email protected]
" type="text">
</p>
<p> <label for="password" class="youpasswd"
data-icon="p"> Your password </label> <input
id="password" name="password" required="required"
placeholder="eg. X8df!90EO" type="password"> </p>
<p class="keeplogin"> <input name="loginkeeping"
id="loginkeeping" value="loginkeeping" type="checkbox">
<label for="loginkeeping">Keep me logged in</label>
</p>
<p class="login button"> <input value="Login"
type="submit"> </p>
</form>"
What would have to be the PHP code to get this to work? I've never used PHP in my life but know HTML,CSS and JQuery so please be nice about your answers :)
Thanks in return!

