Create a login form and password in the upper right corner of the screen

2

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" />
    
asked by anonymous 14.05.2016 / 19:26

1 answer

5

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>
    
20.05.2016 / 20:29