I would like to enter a% login and password% in the upper right corner of the screen with the option to register.
<input type="text" name="nome">
<input type="password" name="senha">
<input type="button" value="Entrar" />
I would like to enter a% login and password% in the upper right corner of the screen with the option to register.
<input type="text" name="nome">
<input type="password" name="senha">
<input type="button" value="Entrar" />
See if it helps.
#nav{height:77px; width:100%;background: #f1f1f1;padding:7px;}
#sup_direito{float:right; width:auto; }
#login, #senha, #cadastrar{float:left;}
<div id="nav">
<div id="sup_direito">
<div id="login"><input type="text" placeholder="login"></div>
<div id="senha"><input type="password" placeholder="senha"></div>
<div id="cadastrar"><a href="cadastrar.php">cadastrar</a></div>
</div>
</div>