Hello,
I am trying to create a form, yet I wonder why the form does not works like usually:
index.php
<form action="login.php" method="POST">
<input type="text" class="form" name="email"><br>
<div style="margin: -60px 0 0 165px;"><input type="password" class="form" name="password"></div>
<div style="margin: 235px 0 0 -125px;"><input type="button" name="submit"></input></div>
<div style="margin: -170px 0 0 350px;"><input type="checkbox" name="keeplogin" value="Keep me logged in">Keep me logged in<br></div>
</form>
First, I wonder why the password textbox is too small (the height is too low and the width is too narrow).
Second, I wonder why after I press the button, nothing happens! Normally, if I press the button - the form suppose to be processed by carrying me to login.php
Yet, this is not the case.