I have the following code:
<form action="paginas/login.php">
<p id="log">Usuário: </p> <input id="cmpG" type="text" name="usuario"/>
<p id="log">Senha: </p> <input id="cmpG" type="password" name="senha" size=8 maxlength=8/>
<p id="log">A senha deve conter 08 caracteres (alfanumerico)</p>
<!-- Barra de botões -->
<div id="barra">
<input id="bnt" type="submit" value="Login"/>
<input id="bnt" type="reset" value="Limpar"/>
<BUTTON >Cadastrar</BUTTON>
</div>
</form>
Well, I do not know how to do the register button, I tried with input
and type submit
, but it goes to login.php
page too, how do I make it go to another page? >